casResetPasswordSentInstructionsView.html 986 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.pm.reset.title}">Reset Password Sent Instructions 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-success">
  13. <h2 th:utext="#{screen.pm.reset.sent}">Password Reset Instructions Sent Successfully.</h2>
  14. <p th:utext="#{screen.pm.reset.sentInstructions}">You should shortly receive an email with
  15. follow-instructions to reset your password. Please do not take long as the password reset instructions
  16. may expire.</p>
  17. </div>
  18. </div>
  19. </main>
  20. </body>
  21. </html>