{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Password recovery" %}{% endblock %} {% block full_content %}

Reset your password

Enter your username, and you will receive an email with a link to change your password.

{% csrf_token %}
{% for field in form %} {% if not field.is_hidden %}

Username:

{{ field }} {{ field.errors }}
{% else %} {{ field }} {% endif %} {% endfor %}

{% endblock %}