{% extends "registration/registration_base.html" %} {% block page-title %}Reset password - {{ block.super }}{% endblock %} {% block body-class %}{{ block.super }} static{% endblock %} {% block content %}
{% if form.errors %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% else %}
Please fix the errors below.
{% endif %} {% endif %}
Reset password
{{ form.email }} {% if form.errors.email %} {% for error in form.errors.email %} {{ error }} {% endfor %} {% endif %}
Log in
{% csrf_token %}
{% endblock %}