root / main / templates / qm / registration / logout.html @ a25fad76
History | View | Annotate | Download (620 Bytes)
| 1 |
{% extends "template_profil.html" %}
|
|---|---|
| 2 |
{% load i18n %}
|
| 3 |
|
| 4 |
{% block content_profil %}
|
| 5 |
|
| 6 |
|
| 7 |
<article id="article-profil" class="home-profil"> |
| 8 |
|
| 9 |
<header id="header-profil"> |
| 10 |
|
| 11 |
<h1>{% trans "Account" %}</h1> |
| 12 |
<h2>{% trans "logout" %}</h2> |
| 13 |
|
| 14 |
</header>
|
| 15 |
|
| 16 |
<div class="text-profil"> |
| 17 |
<p>{% trans "Your are logged out" %}<br/></p> |
| 18 |
<p>
|
| 19 |
{% blocktrans %} You can return to the <a href="/world/{{request.LANGUAGE_CODE}}/">world</a> or {% endblocktrans %}
|
| 20 |
<a href="{% url auth_login %}">{% trans "reconnect" %}</a> {% trans "to your account." %} |
| 21 |
</p>
|
| 22 |
</div>
|
| 23 |
|
| 24 |
|
| 25 |
</article>
|
| 26 |
|
| 27 |
{% endblock %}
|
