{% extends "base.html" %} {% load i18n %} {% load static %} {% block title %} {% trans "Forgot your password?" %} {% endblock %} {% block supplementary_css %} {% endblock %} {% block content %}

{% trans "Forgot your password?" %}

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

{% csrf_token %}
{{ form.email.label_tag }} {{ form.email }}
{% if form.errors %}

{% trans "Please, enter a valid email address." %}

{% endif %}
{% endblock %}