{% if migrated %}

{{ _('Password reset unsuccessful') }}

{{ _('You have migrated to Firefox Accounts. You can no longer change your password here.') }}
{% elif validlink %}

{{ _('Password Reset') }}

{{ csrf() }}
  • {{ form.new_password1 }} {{ form.new_password1.errors }} {% with form_user=form.user %}{% include "users/tougher_password.html" %}{% endwith %}
  • {{ form.new_password2 }} {{ form.new_password2.errors }}
{% else %}

{{ _('Password reset unsuccessful') }}

{{ _('The password reset link was invalid, possibly because it has already been used. Please request a new password reset.') }}
{% endif %}