{% extends 'accounts/base.html' %} {% load static %} {% block title %}Reset Password - Accounts{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% if not email_sent %}

Reset Password

Enter your email to reset your password

{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
Enter the email address associated with your account
{% if form.email.errors %}
{{ form.email.errors.0 }}
{% endif %}
How it works
1
Enter your email
We'll check if an account exists with this email address.
2
Check your inbox
We'll send a secure reset link to your email.
3
Create new password
Click the link and set a new secure password.
{% else %}

Email Sent

Check your inbox for reset instructions

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}