423.html 882 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.blocked}">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.blocked.header}">Access Denied</h2>
  15. <p th:utext="#{screen.blocked.message}">You've entered the wrong password for the user too many times.
  16. You've been throttled.</p>
  17. </div>
  18. </div>
  19. </main>
  20. </body>
  21. </html>