{% extends "base.html" %} {% load i18n %} {% comment %} Copyright 2010 Canonical Ltd. This software is licensed under the GNU Affero General Public License version 3 (see the file LICENSE). {% endcomment %} {% block html_extra %}data-qa-id="forgot_password_step_1"{% endblock %} {% block title %}{% trans "Reset password" %}{% endblock %} {% block text_title %}

{% trans "Reset password" %}

{% trans "Step 1 of 3: Type your email address" %}

{% endblock %} {% block content_id %}auth{% endblock %} {% block content %}

{% blocktrans %}Enter your email address, and we will send you instructions on how to reset your password.{% endblocktrans %}

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors|join:"" }}
{% endif %}

{{ form.email }} {% if form.email.errors %} {{ form.email.errors|first }} {% endif %}

{% endblock %}