index.html 573 B

123456789101112131415
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://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. <h1>Hello Spring Security</h1>
  10. <p>This is an unsecured page, but you can access the secured pages after authenticating.</p>
  11. <ul>
  12. <li>Go to the <a href="/user/index" th:href="@{/user/index}">secured pages</a></li>
  13. </ul>
  14. </body>
  15. </html>