{% extends "account/base.html" %} {% load i18n static %} {% block title %}{% trans "Reset password page" context "Html title" %} | {{ block.super }}{% endblock %} {% block meta_property_og_title %}{% trans "Reset password page" context "Html title" %} | {{ block.super }}{% endblock %} {% block meta_property_twitter_title %}{% trans "Reset password page" context "Html title" %} | {{ block.super }}{% endblock %} {% block content %}{{ block.super }}{% endblock content %} {% block page_account_title %}{% trans "Reset your password" %}{% endblock %} {% block page_account_content %}
{% csrf_token %} {% for field in form %}
{{ field.label_tag }}
{{ field }} {% if field.errors %} {% with field.errors|first as first_error %} - {{ first_error }} {% endwith %} {% elif field.help_text %} {{ field.help_text }} {% endif %}
{% endfor %}

{% endblock %} {% block page_account_bottom %} {% trans "Don't have an account? Sign up" %} {% endblock %}