index.html 594 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>index</title>
  6. </head>
  7. <body>
  8. <h1>这是主页</h1>
  9. <span>
  10. <a th:if="${session.loginUser==null}" href="http://login.codeshop.com/view/login?target=http://www.codeshop.com/view/main">登录</a>
  11. <a th:unless="${session.loginUser==null}" href="http://www.codeshop.com/view/remove">退出</a>
  12. </span>
  13. <p th:unless="${session.loginUser==null}">
  14. <span style="color: aqua" th:text="${session.loginUser.username}"></span> 已登录
  15. </p>
  16. </body>
  17. </html>