{% extends theme('base.html') %} {% from theme('macros/banner_warning.html') import banner_warning %} {% import theme('macros/forms.html') as forms with context %} {% block content %}

{{ _('Reset Password') }}

{{ _("Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one.") }}

{{ _("Fields preceded by a star (*) are required.") }}

{% if config.CAPTCHETAT_BASE_URL %} {{ forms.render_fields(forgot_password_form, exclude=[forgot_password_form.submit, forgot_password_form.captcha_code, forgot_password_form.captcha_id]) }}
{% for error in forgot_password_form.captcha_code.errors %}

{{ error }}

{% endfor %}
{% else %} {{ forms.render_fields(forgot_password_form, exclude=[forgot_password_form.submit]) }} {% endif %}
{% endblock %}