share-page.html 989 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>资源分享</title>
  6. <style>
  7. body { font-family: sans-serif; text-align: center; padding-top: 50px; }
  8. .button-group { margin-top: 30px; }
  9. .btn {
  10. display: inline-block;
  11. padding: 15px 30px;
  12. margin: 0 15px;
  13. border: none;
  14. border-radius: 8px;
  15. font-size: 16px;
  16. cursor: pointer;
  17. text-decoration: none; /* 去掉超链接下划线 */
  18. }
  19. .teacher-btn { background-color: #3498db; color: white; }
  20. .student-btn { background-color: #2ecc71; color: white; }
  21. </style>
  22. </head>
  23. <body>
  24. <h1>资源分享</h1>
  25. <p>请选择您的身份进入查看:</p>
  26. <div class="button-group">
  27. <a th:href="${tealink}" class="btn teacher-btn">我是老师</a>
  28. <a th:href="${stuLink}" class="btn student-btn">我是学生</a>
  29. </div>
  30. </body>
  31. </html>