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

    {{ site_title }}

    {% include "snippets/login-info.html" %}

    {% trans "Password reset" %}

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