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

Reset your password

Enter your email address and we'll send you a link to reset your password.

{% 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.email }}
{% if form.email.errors %}

{{ form.email.errors.0 }}

{% endif %}
{% endblock %}