casLogoutView.html 961 B

12345678910111213141516171819202122232425
  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.logout.header}">CAS Logout</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-success">
  13. <h2 th:utext="#{screen.logout.header}">Logout successful</h2>
  14. <p th:utext="#{screen.logout.success}">You have successfully logged out of the Central Authentication
  15. Service. You may <a href="login">log in</a> again.</p>
  16. <p th:utext="#{screen.logout.security}">For security reasons, exit your web browser.</p>
  17. </div>
  18. </div>
  19. </main>
  20. </body>
  21. </html>