access-denied.html 812 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="https://www.thymeleaf.org">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <title>Spring Security Example</title>
  7. <link rel="stylesheet" href="/webjars/bootstrap/css/bootstrap.css" th:href="@{/webjars/bootstrap/css/bootstrap.css}" />
  8. <link rel="stylesheet" href="/assets/css/style.css" th:href="@{/assets/css/style.css}" />
  9. </head>
  10. <body>
  11. <div class="container">
  12. <div class="row">
  13. <div class="col-md-8">
  14. <h2>Access Denied</h2>
  15. <p>You have denied access.</p>
  16. </div>
  17. </div>
  18. </div>
  19. </body>
  20. </html>