{% extends "registration/password_reset_base.html" %} {% load i18n %} {% block title %}{% trans "Password reset" %}{% endblock %} {% block content %}

{% trans "Password reset" %}

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

{% csrf_token %}
{{ form.email }} {% if form.email.errors %} {% for err in form.email.errors %} {{ err }} {% endfor %} {% endif %}
{% endblock %}