forked from kidgrow-microservices-platform

houruijun
2020-08-20 e04727cd391a4c5953dfde7bfaab355b48897567
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>