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