{% extends 'dashboard/auth/auth_base.html' %} {% block title %}Set New Password{% endblock %} {% block auth_content %}

Set a new password

{% if validlink %}
{% csrf_token %} {% if form.non_field_errors %}

There was an error with your request

    {% for error in form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ form.new_password1 }}
{% if form.new_password1.errors %}

{{ form.new_password1.errors.0 }}

{% endif %} {% if form.new_password1.help_text %}

{{ form.new_password1.help_text|safe }}

{% endif %}
{{ form.new_password2 }}
{% if form.new_password2.errors %}

{{ form.new_password2.errors.0 }}

{% endif %}
{% else %}

Invalid password reset link

The password reset link was invalid, possibly because it has already been used or has expired.

{% endif %}
{% endblock %}