publik-base-theme/templates/authentic2/manager/user_change_email_notificat...

35 lines
841 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "emails/body_base.html" %}
{% block content %}
<p>Bonjour,</p>
<p>
Un administrateur a demandé le changement de votre adresse de
{{ user.email }} en {{ email }}.
</p>
{% if email_is_not_unique %}
<p>
Cependant cette adresse est déjà liée à un autre compte.
</p>
<p>
Vous pouvez récupérer un accès à ce compte en utilisant le bouton suivant :
</p>
{% include "emails/button-link.html" with url=password_reset_url label="Mot de passe oublié" %}
{% else %}
<p>
Pour valider ce changement veuillez cliquer sur le bouton suivant :
</p>
{% include "emails/button-link.html" with url=link label="Valider ladresse" %}
<p>
Attention, cette action est uniquement valide pendant {{ token_lifetime }}.
</p>
{% endif %}
{% endblock %}