1
0
Fork 0

csrf expiration error page

This commit is contained in:
Emmanuel Viennet 2023-03-19 14:39:09 +01:00
parent 3f26af4ed6
commit f94654eaa1
2 changed files with 18 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -0,0 +1,18 @@
{% extends 'base.j2' %}
{% import 'bootstrap/wtf.html' as wtf %}
{% block app_content %}
<h2>Votre session a expiré</h2>
<a href="{{ url_for('auth.logout') }}">
<img
title="périmé"
src="/ScoDoc/static/icons/a_consommer.jpeg">
</a>
<form action="{{ url_for('auth.logout') }}" method="get">
<button type="submit">Veuillez vous reconnecter</button>
</form>
{% endblock %}