{% extends "account/base.html" %} {% load i18n %} {% load bootstrap_tags %} {% load account %} {% block title %}{% trans "Password reset" %}{% endblock %} {% user_display request.user as user_display %} {% block body_outer %} {% if user.is_authenticated %} {% include "account/snippets/already_logged_in.html" %} {% endif %}

{% trans "Forgotten your password?" %}

{% trans "Enter your email address below, and we'll send you an email allowing you to reset it." %}

{% csrf_token %} {{ form.as_p }}

{% blocktrans %}If you have any trouble resetting your password, contact us at {{ THEME_ACCOUNT_CONTACT_EMAIL }}.{% endblocktrans %}

{% endblock %} {% block extra_body %} {% endblock %}