{% extends "base.html" %} {% load crispy_forms_filters %} {% load i18n %} {% load account %} {% block title %}{% trans 'Password Reset' %}{% endblock %} {% block content %}

{% trans "Password Reset" %}

{% if user.is_authenticated %} {% include "account/snippets/already_logged_in.html" %} {% endif %}

{% if EMAIL_ENABLED %}

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

{% csrf_token %} {{ form | crispy }}
{% else %}

{% trans 'Password reset is disabled on this instance.' %}

{% endif %}
{% trans "Sign In" %} {% if SIGNUP_ENABLED %} - {% trans "Sign Up" %} {% endif %}
{% endblock %}