publik-base-theme/templates/authentic2/registration_success_body.html

18 lines
591 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 {{ user.get_full_name }},</p>
<p>
Votre compte a été créé. Pour vous connecter, utilisez les informations suivantes :
</p>
<ul>
<li>{% if user.email %}Courriel : {{ user.email }}{% else %}Identifiant : {{ user.username }}{% endif %}</li>
{% if user.has_usable_password %}
<li>Mot de passe : celui que vous venez de choisir lors de linscription.</li>
{% endif %}
</ul>
{% include "emails/button-link.html" with url=login_url label="Me connecter maintenant" %}
{% endblock %}