publik-base-theme/templates/authentic2/api_user_create_registratio...

31 lines
836 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>
À votre demande, un compte vient de vous être créé :
</p>
<ul>
{% if user.username %}<li>Identifiant : {{ user.username }}</li>{% endif %}
<li>Courriel : {{ user.email }}</li>
<li>Prénom : {{ user.first_name }}</li>
<li>Nom : {{ user.last_name }}</li>
</ul>
<p>
Pour choisir un mot de passe et accéder à votre compte, veuillez cliquer
sur le bouton suivant :
</p>
{% include "emails/button-link.html" with url=reset_url label="Accéder au compte" %}
<p>
{% if expiration_days == 1 %}
Attention, cette action nest valide que durant 24 heures.
{% else %}
Attention, cette action nest valide que durant {{ expiration_days }} jours.
{% endif %}
</p>
{% endblock %}