{% extends "base.html" %} {% load crispy_forms_tags i18n translations %} {% block breadcrumbs %}
  • {% translate "Password reset" %}
  • {% endblock breadcrumbs %} {% block content %}
    {% if second_stage %} {% translate "Forgotten your password? You can now set new one." as msg %} {% show_message "info" msg %} {% else %} {% translate "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 %} {% translate "Please fix errors in the registration form." as msg %} {% show_message "error" msg %} {% endif %}

    {% include "accounts/snippets/login-title.html" %}

    {% translate "Password reset" %}

    {% csrf_token %} {{ form|crispy }}
    {% include "accounts/snippets/login-info.html" %}
    {% endblock content %}