{% extends "registration/password_reset_base.html" %} {% load tapeforms %} {% block extra_head %} {{ block.super }} {# This prevents leaking the password reset token via the #} {# Referer header to any 3rd party apps on the page. #} {% endblock %} {% block content %} {% if validlink %}
{% csrf_token %} {% if form.non_field_errors %}
{% for non_field_error in form.non_field_errors %}
{{ non_field_error }}
{% endfor %}
{% endif %}
{% formfield form.new_password1 %}
{% formfield form.new_password2 %}
{% else %}

Erreur lors de la réinitialisation du mot de passe.

Le lien est incorrect ou a expiré. Si c'est bien celui que vous avez reçu, vous pouvez demander le renvoi d'un courriel afin d'obtenir un nouveau lien.

{% endif %} {% endblock %}