forked from kidgrow-microservices-platform

zhaoxiaohao
2020-05-11 76c53a0f0792a9406259dd78e1b8c20ae55dd546
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta content="text/html;charset=UTF-8">
    <title>SSO单点登录demo</title>
</head>
<body>
<div>
    登录者: <span th:text="${username}"></span>
    <br/>
    权限: <span th:text="${authorities}"></span>
    <br/>
    应用id: <span th:text="${clientId}"></span>
    <br/>
    token: <span th:text="${token}"></span>
</div>
</body>
</html>