1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-02-23 00:21:19 +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 10:20:16 +02:00
{% comment %}
SPDX-License-Identifier: GPL-3.0-or-later
{% endcomment %}
2020-08-05 16:26:44 +02:00
{% load i18n %}
{% block content %}
2020-09-07 19:28:18 +02: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 19:28:18 +02:00
</p>
</div>
</div>
{% endblock %}