1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
- <head>
- <meta charset="UTF-8">
- <title>Login Module</title>
- </head>
- <body>
- <h1> 首页 </h1>
- <span>
- <!-- target:从哪跳转过来 -->
- <a th:if="${session.loginUser == null}" href="http://login.codeshop.com:9000/view/login?target=http://www.codeshop.com:9010/view/index">登录</a>
- <a th:unless="${session.loginUser == null}" href="#">退出</a>
- </span>
- <P th:unless="${session.loginUser == null}">
- <span style="color: blue" th:text="${session.loginUser.username}"></span>已登录
- </P>
- </body>
- </html>
|