{% extends "registration/base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block title %}{% trans "Password Reset" %}{% endblock title %} {% block page_main_title %}{% trans "Password Reset" %}{% endblock page_main_title %} {% block content %}

{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}

{% block form %}
{% csrf_token %} {% block form_inner %} {{ form|crispy }} {% endblock %} {% block form_actions %}
{% block form_actions_inner %} {% endblock form_actions_inner %}
{% endblock form_actions %}
{% endblock form %} {% endblock content %}