{% extends "account/base.html" %} {% load i18n %} {% load widget_tweaks %} {% block head_title %}{% trans "Password Reset" %}{% endblock %} {% block content %}

{% trans "Password Reset" %}

{% if user.is_authenticated %} {% include "account/snippets/already_logged_in.html" %} {% endif %}
{% csrf_token %} {% with WIDGET_ERROR_CLASS='field_error' WIDGET_REQUIRED_CLASS='field_required' %}
{% render_field form.email class="form-control" aria-describedby="emailHelp" placeholder="Email address" %} {% if form.email.errors %} {% for error in form.email.errors %} {{ error|escape }} {% endfor %} {% endif %}
{% endwith %}
{% endblock %}