管道基础大数据平台系统开发-【后端】-Server
13693261870
2022-09-23 9b3f2eaf1353898ed3299ae97334ba139cc8602f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
    <meta charset="UTF-8">
    <title>Land系统-首页</title>
    <script>
        window.onload=function () {
            var url =  document.getElementById("url").value;
            if (url){
                window.location.href = url;
            }
        }
    </script>
</head>
<body>
<h1>首页</h1>
<h2 th:text="${msg}"></h2>
<input id="url" type="hidden" th:value="${url}">
 
<div shiro:guest="">
    <a th:href="@{/toLogin}">登录</a>
</div>
<br />
<div shiro:user>
    <a th:href="@{/logout}">注销</a>
</div>
 
</body>
</html>