{% extends "base.html" %} {% load i18n %} {% block content %}

{% trans "Account: Send a new password" %}

{% blocktrans %}Lost your password ? Here you can ask to reset your password. Enter the username you use and you will get a confirmation email with your new password. This new password will be activated only after you have clicked on the link in the email.{% endblocktrans %}

{% 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 %}