misuzu/templates/auth/logout.twig

16 lines
799 B
Twig
Raw Normal View History

2018-08-15 01:12:58 +00:00
{% extends 'auth/master.twig' %}
2018-10-22 19:53:21 +00:00
{% from 'macros.twig' import container_title %}
2018-03-22 02:56:41 +00:00
{% block content %}
<div class="container auth">
{{ container_title('<i class="fas fa-user-clock fa-fw"></i> Logout confirmation') }}
<div class="auth__form">
<p class="auth__paragraph">We couldn't verify that you were actually the person attempting to log out.</p>
<p class="auth__paragraph">Press the button below to verify the logout request, otherwise click back in your browser or close this tab.</p>
<p class="auth__paragraph">This error is usually caused by pressing the logout button on a page that's been loaded for a while.</p>
2019-01-24 20:54:24 +00:00
<a href="{{ url('auth-logout') }}" class="input__button">Log out</a>
2018-03-22 02:56:41 +00:00
</div>
</div>
{% endblock %}