casLoginMessageView.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.authentication.warning}">CAS Login Message 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" class="loginMessageView">
  12. <div class="alert alert-warning">
  13. <h2 th:text="#{screen.authentication.warning}">Authentication Succeeded with Warnings</h2>
  14. <div th:each="message : ${messages}">
  15. <p class="message" th:utext="${message.text}">Message Text</p>
  16. </div>
  17. <section class="row">
  18. <div class="col-sm-3">
  19. <form method="post" id="form" class="fm-v clearfix" th:action="@{/login}">
  20. <input type="hidden" name="execution" th:value="${flowExecutionKey}"/>
  21. <input type="hidden" name="_eventId" value="proceed"/>
  22. <input class="btn btn-submit" name="continue" accesskey="l"
  23. th:value="#{screen.button.continue}" tabindex="4" type="submit" value="Continue"/>
  24. </form>
  25. </div>
  26. <div class="col-sm-3" th:if="${passwordManagementEnabled}">
  27. <form th:if="${passwordExpirationWarningFound}" method="post" id="changePasswordForm" class="fm-v clearfix" th:action="@{/login}">
  28. <input type="hidden" name="execution" th:value="${flowExecutionKey}"/>
  29. <input type="hidden" name="_eventId" value="changePassword"/>
  30. <input class="btn btn-info" name="changePassword" accesskey="l"
  31. th:value="#{screen.button.changePassword}" tabindex="5" type="submit"
  32. value="Change Password"/>
  33. </form>
  34. </div>
  35. </section>
  36. </div>
  37. </div>
  38. </main>
  39. </body>
  40. </html>