1
0
Fork 0

Updates reset password flow to use validators

This commit is contained in:
Mouse Reeve 2022-07-15 11:25:49 -07:00
parent 1bb0a9d998
commit 3846b201bd
3 changed files with 39 additions and 13 deletions

View file

@ -26,7 +26,8 @@
{% trans "Password:" %}
</label>
<div class="control">
<input type="password" name="password" maxlength="128" class="input" required="" id="id_new_password" aria-describedby="form_errors">
{{ form.password }}
{% include 'snippets/form_errors.html' with errors_list=form.password.errors id="desc_current_password" %}
</div>
</div>
<div class="field">
@ -34,7 +35,8 @@
{% trans "Confirm password:" %}
</label>
<div class="control">
<input type="password" name="confirm-password" maxlength="128" class="input" required="" id="id_confirm_password" aria-describedby="form_errors">
{{ form.confirm_password }}
{% include 'snippets/form_errors.html' with errors_list=form.confirm_password.errors id="desc_confirm_password" %}
</div>
</div>
<div class="field is-grouped">