2022-09-13 13:14:49 +00:00
|
|
|
{% extends 'auth/master.twig' %}
|
|
|
|
{% from 'macros.twig' import container_title %}
|
|
|
|
|
|
|
|
{% set title = 'Logout confirmation' %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container auth__container">
|
|
|
|
{{ container_title('<i class="fas fa-user-clock fa-fw"></i> Logout confirmation') }}
|
|
|
|
|
|
|
|
<div class="auth__logout">
|
|
|
|
<p class="auth__logout__paragraph">We couldn't verify that you were actually the person attempting to log out.</p>
|
|
|
|
<p class="auth__logout__paragraph">Press the button below to verify the logout request, otherwise click back in your browser or close this tab.</p>
|
|
|
|
<p class="auth__logout__paragraph">This error is usually caused by pressing the logout button on a page that's been loaded for a while.</p>
|
2023-09-10 20:02:11 +00:00
|
|
|
<a href="{{ url('auth-logout', {'csrf': csrf_token()}) }}" class="input__button">Log out</a>
|
2022-09-13 13:14:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|