| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!DOCTYPE html>
- <html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout}">
- <head>
- <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
- <title th:text="#{screen.pm.reset.title}">Reset Password Send Instructions View</title>
- <link href="../../static/css/cas.css" rel="stylesheet" th:remove="tag" />
- </head>
- <body>
- <main role="main" class="container mt-3 mb-3">
- <div layout:fragment="content" id="reset">
- <h3 th:utext="#{screen.pm.reset.title}">Reset your password</h3>
- <span th:utext="#{screen.pm.reset.instructions}">Please provide your username. You will receive an email with follow-up instructions on how to reset your password.</span>
- <form method="post" id="fm1" class="fm-v clearfix">
- <input type="hidden" name="execution" th:value="${flowExecutionKey}"/>
- <input type="hidden" name="_eventId" value="findAccount"/>
- <div class="form-group">
- <label for="username" class="fl-label" th:utext="#{screen.pm.reset.username}"/>
- <input type="text" class="form-control" id="username" name="username"
- size="45" tabindex="1" required/>
- </div>
- <input class="btn btn-submit" accesskey="s"
- th:value="#{screen.pm.button.submit}" tabindex="2" type="submit" value="SUBMIT"/>
-
- <input class="btn btn-danger"
- name="cancel"
- accesskey="c"
- th:value="#{screen.pm.button.cancel}"
- type="button"
- onclick="location.href = location.href;" value="CANCEL"/>
- </form>
- <p/>
- </div>
- <script type="text/javascript" th:inline="javascript">
- var i = [[#{screen.welcome.button.loginwip}]];
- $('#fm1').submit(function () {
- $(':submit').attr('disabled', true);
- $(':submit').attr('value', i);
- return true;
- });
- </script>
- </div>
- </main>
- </body>
- </html>
|