{% extends "authopenid/base.html" %} {% load i18n %} {% block title %}{{ block.super }} | {% trans "Password reset" %}{% endblock %} {% block breadcrumb %}{{ block.super }} » {% trans "Password reset" %}{% endblock %} {% block content_title %}

{% trans "I lost my password!" %}

{% endblock %} {% block body %}

{% trans "No worries! Here you can ask to reset your password by entering the username you use. You will then get a confirmation email with your new password. The new password will be activated only after you have clicked on the link in the email." %}

{% if form.errors %}

{% trans "Please correct errors below:" %}
{% if form.username.errors %} {{ form.username.errors|join:", " }} {% endif %}

{% endif %} {% if msg %}
{{ msg }} {% endif %}
: {{ form.username }}

{% endblock %}