This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
lesechos/theme-authentic2/templates/authentic2/logout_confirm.html

24 lines
603 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n gadjo %}
{% block title %}
{% trans "Logout" %}
{% endblock %}
{% block user %}
{% endblock %}
{% block content %}
<p>{% blocktrans %}You are going to do a global logout, do you want to continue ?{% endblocktrans %} </p>
<p>
<form method="post">
{% csrf_token %}
<input type="hidden" name="next" value="{{ next_url }}">
<input type="submit" name="submit" value="{% trans "Continue" %}">
<a href="{{ next_url }}">{% trans "Cancel" %}</a>
</form>
</p>
{% endblock %}