{% extends "base.html" %} {% load i18n %} {% block content %}

{% trans "Password reset" %}

{% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %}

{% if form.errors %}
{% if form.errors.items|length == 1 %}{% trans "Please correct the error below." %}{% else %}{% trans "Please correct the errors below." %}{% endif %}
{% endif %}
{% csrf_token %} {% if form.email.errors %} {% for error in form.email.errors %}{{ error|escape }}{% endfor %} {% endif %}
{% endblock %}