1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-07-04 00:02:50 +02:00

Restart the project in Django

This commit is contained in:
Yohann D'ANELLO
2020-09-20 22:31:37 +02:00
parent f341764d0b
commit c882d1ac7a
135 changed files with 1694 additions and 6995 deletions

View File

@ -0,0 +1,27 @@
{% extends "base.html" %}
{% comment %}
SPDX-License-Identifier: GPL-3.0-or-later
{% endcomment %}
{% load i18n %}
{% block content %}
<div class="card bg-light">
<h3 class="card-header text-center">
{{ title }}
</h3>
<div class="card-body">
{% if validlink %}
<p>
{% trans "Your email have successfully been validated." %}
</p>
<p>
{% blocktrans %}You can now <a href="{{ login_url }}">log in</a>.{% endblocktrans %}
</p>
{% else %}
<p>
{% trans "The link was invalid. The token may have expired. Please send us an email to activate your account." %}
</p>
{% endif %}
</div>
</div>
{% endblock %}