{% extends 'layout.html' %} {% set page_title = _('Reset Password') %} {% block body %}

{{ page_title }}

{% if new_password %}

{% trans change_url=url_for('users.edit_profile') %}

Your password was reset to {{ new_password }}. Please make sure to change it as soon as possible. {% endtrans %} {% else %}

{% trans %}

In order to reset your password enter either your username or e-mail address. We will then send you you a link to your e-mail address with a link to reset the password. {% endtrans %}

{% call form() %} {{ form.as_dl() }} {{ form.captcha or '' }}
{% endcall %} {% endif %} {% endblock %}