{% extends "account/base.html" %} {% load i18n %} {% block head_title %}{% trans "Password Reset" %}{% endblock %} {% block body %}

{% trans "Password Reset" %}

{% if user.is_authenticated %}

{% trans "Note" %}: {% blocktrans %}you are already logged in as {{ user }}.{% endblocktrans %}

{% endif %}

{% blocktrans %}A new password has been sent to {{ email }}. If you do not receive it within a few minutes, contact us at {{ contact_email }}.{% endblocktrans %}

{% url account.views.login as login_url %}

{% blocktrans %}When you receive the new password, you should log in and change it as soon as possible.{% endblocktrans %}

{% endblock %}