The next step in the password reset process (confirmation) continues to be handled by student.views.password_reset_confirm_wrapper, a custom wrapper around Django's password reset confirmation view.
20 lines
787 B
Plaintext
20 lines
787 B
Plaintext
<form id="email-change-form" method="post">
|
|
<label for="new-email"><%- gettext("New Address") %></label>
|
|
<input id="new-email" type="text" name="new-email" value="" placeholder="xsy@edx.org" data-validate="required email"/>
|
|
<div id="new-email-status" />
|
|
|
|
<label for="password"><%- gettext("Password") %></label>
|
|
<input id="password" type="password" name="password" value="" data-validate="required"/>
|
|
<div id="password-status" />
|
|
|
|
<div class="submit-button">
|
|
<input type="submit" id="email-change-submit" value="<%- gettext("Change My Email Address") %>">
|
|
</div>
|
|
<div id="request-email-status" />
|
|
|
|
<div id="password-reset">
|
|
<a href="#"><%- gettext("Reset Password") %></a>
|
|
</div>
|
|
<div id="password-reset-status" />
|
|
</form>
|