casAuthenticationBlockedView.html 888 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout}">
  3. <head>
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
  6. <title th:text="#{screen.authnblocked.heading}">Authentication Blocked View</title>
  7. <link href="../../static/css/cas.css" rel="stylesheet" th:remove="tag" />
  8. </head>
  9. <body>
  10. <main role="main" class="container mt-3 mb-3">
  11. <div layout:fragment="content">
  12. <div class="alert alert-danger">
  13. <h2 th:utext="#{screen.authnblocked.heading}">Authentication attempt is blocked.</h2>
  14. <p th:utext="#{screen.authnblocked.message}">Your authentication attempt is untrusted and unauthorized from
  15. your current workstation.</p>
  16. </div>
  17. </div>
  18. </main>
  19. </body>
  20. </html>