{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Password Reset" %}{% endblock %} {% block content %}
{% trans "Password Reset" %} {% trans "Forgotten your password? Enter your email address below, and we'll send you an email allowing you to reset it." %}
{% csrf_token %} {% if form.non_field_errors %} {{ form.non_field_errors }} {% endif %}
{{ form.email.label }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{% trans "Reset My Password" %}
{% trans "Remember your password?" %} {% trans "Sign in" %}
{% endblock %}