2021-01-26 14:26:35 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block auth %}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<h1 class="title">{% trans "Déconnexion réussie" %}</h1>
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
<div class="columns is-centered">
|
|
|
|
<div class="column is-two-thirds">
|
|
|
|
<form action="" method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
|
|
|
|
{% include "forms/form.html" with errors=True %}
|
|
|
|
|
|
|
|
<div class="field is-grouped is-centered">
|
|
|
|
<div class="control is-expanded">
|
|
|
|
<a class="button is-fullwidth is-outlined is-primary is-light" href="{% url 'authens:login' %}">
|
|
|
|
<span>{% trans "Se reconnecter" %}</span>
|
2021-04-13 15:22:53 +02:00
|
|
|
<span class="icon">
|
2021-01-26 14:26:35 +01:00
|
|
|
<i class="fas fa-unlock"></i>
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="control">
|
|
|
|
<a class="button is-primary" href="{% url 'kadenios' %}">
|
|
|
|
<span>{% trans "Accueil" %}</span>
|
2021-04-13 15:22:53 +02:00
|
|
|
<span class="icon">
|
2021-01-26 14:26:35 +01:00
|
|
|
<i class="fas fa-home"></i>
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|