publik-base-theme/templates/authentic2/manager/new-account-notification_bo...

28 lines
639 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.

{% 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>
{% if new_password %}
<p>
Votre mot de passe est : {{ new_password }}
</p>
{% endif %}
{% if portal_user_url %}
{% include "emails/button-link.html" with url=portal_user_url label="Accéder au site" %}
{% endif %}
{% endblock %}