mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 22:07:09 +00:00
1d81213773
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
19 lines
442 B
HTML
19 lines
442 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
{% endcomment %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<div class="card bg-body">
|
|
<h3 class="card-header text-center">
|
|
{% trans "Account activation" %}
|
|
</h3>
|
|
<div class="card-body">
|
|
<p>
|
|
{% trans "An email has been sent. Please click on the link to activate your account." %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|