Skip to content

Commit

Permalink
Use manual password field to customize id
Browse files Browse the repository at this point in the history
  • Loading branch information
mouse-reeve committed Jul 15, 2022
1 parent b1f5171 commit 65117fe
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions bookwyrm/templates/landing/password_reset.html
Expand Up @@ -26,8 +26,16 @@ <h1 class="title">{% trans "Reset Password" %}</h1>
{% trans "Password:" %}
</label>
<div class="control">
{{ form.password }}
{% include 'snippets/form_errors.html' with errors_list=form.password.errors id="desc_current_password" %}
<input
type="password"
name="password"
maxlength="128"
class="input"
required=""
id="id_new_password"
aria-describedby="desc_password"
>
{% include 'snippets/form_errors.html' with errors_list=form.password.errors id="desc_password" %}
</div>
</div>
<div class="field">
Expand Down

0 comments on commit 65117fe

Please sign in to comment.