{% extends "base.html" %} {% load i18n %} {% block head_title %}Password Reset{% endblock %} {% block content %}

Reset Your Password

We'll send you an email with a reset link.

{% if user.is_authenticated %}
You are already signed in. If you want to reset your password, you can do that from your account settings.
{% endif %}

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

{% csrf_token %} {% for field in form %}
{{ field }} {% if field.errors %} {% for error in field.errors %}

{{ error }}

{% endfor %} {% endif %}
{% endfor %}
{% endblock %}