1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2024-12-03 13:46:58 +00:00
nk20/apps/registration/templates/registration/email_validation_email_sent.html

22 lines
547 B
HTML
Raw Normal View History

{% extends "base.html" %}
2020-09-01 08:20:16 +00:00
{% comment %}
SPDX-License-Identifier: GPL-3.0-or-later
{% endcomment %}
2020-08-05 14:26:44 +00:00
{% load i18n %}
{% block content %}
2020-09-07 17:28:18 +00:00
<div class="card bg-light">
<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>
<p>
{% trans "You must also go to the Kfet to pay your membership." %}
2020-09-07 17:28:18 +00:00
</p>
</div>
</div>
{% endblock %}