casConfirmLogoutView.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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.confirm.header}">Confirm Logout 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-info">
  13. <h2 th:utext="#{screen.logout.confirm.header}">Do you want to log out completely?</h2>
  14. <p th:utext="#{screen.logout.confirm.text}">An application may have redirected you to the Central
  15. Authentication Service \
  16. to completely log you out and destroy your single sign-on session. If you choose to log out, you will be
  17. asked again \
  18. to provide your credentials and re-autheticate once you attempt to access an application.
  19. <p>
  20. <p><br>Do you want to proceed?</p>
  21. <div align="center">
  22. <form method="post" id="fm1">
  23. <input type="hidden" name="LogoutRequestConfirmed" value="true"/>
  24. <input type="hidden" name="execution" th:value="${flowExecutionKey}"/>
  25. <input type="hidden" name="_eventId" value="success"/>
  26. <input class="btn btn-primary"
  27. name="success"
  28. accesskey="l"
  29. th:value="#{screen.welcome.button.logout}"
  30. value="Logout"
  31. type="submit"/>
  32. </form>
  33. </div>
  34. </div>
  35. </div>
  36. </main>
  37. </body>
  38. </html>