{% extends "accounts/base.html" %} {% block title %}{% trans "Password Reset" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Forgot your password?" %}

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

{% csrf_token %} {% for f in form %} {% if f.is_hidden %} {{ f }} {% else %}
{{ f }} {% if f.errors %} {% for field_error in f.errors %} {{ field_error }} {% endfor %} {% endif %}
{% endif %} {% endfor %}
{% if from_registration %}

{% trans "I want to make a new account. Take me back to registration." %}

{% endif %}

{% trans "Log in" %}

{% endblock %}