mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-01-15 00:22:26 +00:00
37 lines
749 B
HTML
37 lines
749 B
HTML
{% load i18n %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
|
|
<p>
|
|
{% trans "Hi" %} {{ user.registration }},
|
|
</p>
|
|
|
|
<p>
|
|
{% trans "You recently registered on the TFJM² platform. Please click on the link below to confirm your registration." %}
|
|
</p>
|
|
|
|
<p>
|
|
<a href="https://{{ domain }}{% url 'registration:email_validation' uidb64=uid token=token %}">
|
|
https://{{ domain }}{% url 'registration:email_validation' uidb64=uid token=token %}
|
|
</a>
|
|
</p>
|
|
|
|
<p>
|
|
{% trans "This link is only valid for a couple of days, after that you will need to contact us to validate your email." %}
|
|
</p>
|
|
|
|
<p>
|
|
{% trans "Thanks" %},
|
|
</p>
|
|
|
|
--
|
|
<p>
|
|
{% trans "The TFJM² team." %}<br>
|
|
</p>
|