{% extends "registration/base.html" %} {% load i18n jazzy_tabler %} {% get_jazzy_ui_tweaks as jazzy_ui %} {% block content %}

{% trans 'Forgot password?' %}

{% blocktrans trimmed %} Enter your email address below, and we'll email instructions for setting a new one. {% endblocktrans %}

{% csrf_token %} {% if form.errors %} {% if form.email.errors %}
{{ form.email.label }}: {{ form.email.errors|join:', ' }}
{% endif %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}

{{ error }}

{% endfor %}
{% endif %} {% endif %}
{% endblock %}