plateforme-tfjm2/templates/registration/email_validation_complete.html

28 lines
732 B
HTML
Raw Normal View History

2020-04-29 05:55:06 +00:00
{% extends "base.html" %}
2020-09-20 19:24:52 +00:00
{% comment %}
SPDX-License-Identifier: GPL-3.0-or-later
{% endcomment %}
2020-04-29 05:55:06 +00:00
{% load i18n %}
{% block content %}
2020-09-20 19:24:52 +00:00
<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>
2020-04-29 05:55:06 +00:00
{% blocktrans %}You can now <a href="{{ login_url }}">log in</a>.{% endblocktrans %}
2020-09-20 19:24:52 +00:00
</p>
2020-04-29 05:55:06 +00:00
{% else %}
2020-09-20 19:24:52 +00:00
<p>
{% trans "The link was invalid. The token may have expired. Please send us an email to activate your account." %}
</p>
2020-04-29 05:55:06 +00:00
{% endif %}
2020-09-20 19:24:52 +00:00
</div>
</div>
2020-04-29 05:55:06 +00:00
{% endblock %}