2020-04-05 02:26:42 +00:00
|
|
|
{% 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 %}
|
2020-04-05 02:26:42 +00:00
|
|
|
|
|
|
|
{% 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>
|
2020-09-07 17:44:54 +00:00
|
|
|
{% trans "You must also go to the Kfet to pay your membership." %}
|
2020-09-07 17:28:18 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|