forked from kidgrow-microservices-platform

houruijun
2020-11-02 f14deee7baaf82e7aad6fc81a2509ba88e869afd
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>