18 lines
431 B
HTML
18 lines
431 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>Spring Security SSO</title>
|
|
<link rel="stylesheet"
|
|
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="col-sm-12">
|
|
<h1>Secured Page</h1>
|
|
Welcome, <span th:text="${#authentication.name}">Name</span>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |