{% extends "account/base.html" %} {% load widget_tweaks i18n %} {% block page_content %}
{% if user.is_authenticated %} {% include "account/snippets/already_logged_in.html" %} {% endif %}

{% translate "Password Reset" %}

{% trans "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it." %}

{% include "messages.html" %}
{% csrf_token %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% for field in form %}
{% render_field field class="form-control" %} {% for error in field.errors %}
{{ error|escape }}
{% endfor %}
{% endfor %}

{% blocktrans %}Please contact us if you have any trouble resetting your password.{% endblocktrans %}

{% endblock %}