Files
spring-security-samples/servlet/spring-boot/java/hello-security-explicit/src/main/resources/templates/index.html

9 lines
197 B
HTML

<html xmlns:th="https://www.thymeleaf.org">
<head>
<title>Hello Security!</title>
</head>
<body>
<h1>Hello Security!</h1>
<a id="logout" th:href="@{/logout}">Log Out</a>
</body>
</html>