{% extends "account/base.html" %} {% block title %}{{ page_title(_("Password Reset")) }}{% endblock %} {% block content %}

{{ _("Password Reset") }}

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

{{ _("Forgotten your password? Enter your email address below, and we'll send you an email allowing you to reset it.") }}

{{ csrf() }} {{ form.as_p() }}

{% trans %}Please contact us if you have any trouble resetting your password.{% endtrans %}

{% endblock %} {% block js %} {{ super() }} {% endblock %}