404.html 1011 B

123456789101112131415161718192021222324252627
  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.pagenotfound}">Error - Page Not Found</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-info">
  14. <h2 th:utext="#{screen.error.page.notfound}">Page Not Found</h2>
  15. <p th:utext="#{screen.error.page.doesnotexist}">The page you are attempting to access does not exist at the
  16. moment.</p>
  17. <a class="btn btn-submit" th:href="@{/login}" th:utext="#{screen.error.page.loginagain}">Login
  18. Again</a>
  19. </div>
  20. </div>
  21. </main>
  22. </body>
  23. </html>