{% extends "base.html" %} {% load i18n %} {% load translations %} {% load crispy_forms_tags %} {% block breadcrumbs %}
  • {% trans "Password reset" %}
  • {% endblock %} {% block content %} {% if second_stage %} {% show_message "info" _("Forgotten your password? You can now set new one.") %} {% else %} {% show_message "info" _("Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one.") %} {% endif %} {% if form.errors %} {% show_message "error" _("Please fix errors in the registration form.") %} {% endif %}

    {% trans "Password reset" %}

    {% csrf_token %} {{ form|crispy }} {% if captcha_form %} {{ captcha_form|crispy }} {% endif %}
    {% endblock %}