{% extends "allauth/layouts/entrance.html" %} {% load i18n account %} {% block title %}{% trans "Password Reset" %}{% endblock %} {% block body_inner %}

{% trans "Forgot Your Password?" %}

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

{% if user.is_authenticated %} {% include "account/snippets/already_logged_in.html" %} {% endif %}
{% csrf_token %} {{ form.non_field_errors }}
{% if form.email.errors %}

{{ form.email.errors|striptags }}

{% endif %}

{% trans "Back to Sign In" %}

{% endblock %}