403.html 978 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout}">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
  7. <title th:text="#{screen.error.page.title.permissiondenied}">Error - Permission Denied</title>
  8. <link href="../../static/css/cas.css" rel="stylesheet" th:remove="tag" />
  9. </head>
  10. <body>
  11. <main role="main" class="container mt-3 mb-3">
  12. <div layout:fragment="content">
  13. <div class="alert alert-danger">
  14. <h2 th:utext="#{screen.error.page.authdenied}">Authorization Denied</h2>
  15. <p th:utext="#{screen.error.page.permissiondenied}">You do not have permission to view this page.</p>
  16. <a class="btn btn-submit" th:href="@{/login}" th:utext="#{screen.error.page.loginagain}">Login Again</a>
  17. </div>
  18. </div>
  19. </main>
  20. </body>
  21. </html>