33 lines
1.7 KiB
HTML
33 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/extras/spring-security" lang="en">
|
|
<head>
|
|
<title>Spring Security with Extra Fields</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
|
|
<link href="http://getbootstrap.com/docs/4.0/examples/signin/signin.css" rel="stylesheet" crossorigin="anonymous"/>
|
|
<link rel="stylesheet" href="/css/main.css" th:href="@{/css/main.css}" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="logout float-right" th:fragment="logout" sec:authorize="isAuthenticated()">
|
|
<p>Logged in: <span sec:authentication="name"></span> | <span th:text="${domain}">Some Domain</span>
|
|
</p>
|
|
<div>
|
|
<form action="#" th:action="@{/logout}" method="post">
|
|
<button class="btn btn-sm btn-primary btn-block" type="submit">Logout</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<h2>Hello Spring Security</h2>
|
|
<p>This is an unsecured page, but you can access the secured pages after authenticating.</p>
|
|
<ul>
|
|
<li>Go to the <a href="/user/index" th:href="@{/user/index}">secured pages</a></li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|