index.html 478 B

12345678910111213
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="https://www.thymeleaf.org">
  3. <head>
  4. <title>Hello Spring Security</title>
  5. <meta charset="utf-8" />
  6. <link rel="stylesheet" href="/css/main.css" th:href="@{/css/main.css}" />
  7. </head>
  8. <body>
  9. <div th:substituteby="index::logout"></div>
  10. <h1>This is a secured page!</h1>
  11. <p><a href="/index" th:href="@{/index}">Back to home page</a></p>
  12. </body>
  13. </html>