13 lines
629 B
Twig
13 lines
629 B
Twig
{% extends 'auth/master.twig' %}
|
|
|
|
{% block content %}
|
|
<div class="container container--new auth">
|
|
<div class="container__title">Logout confirmation</div>
|
|
|
|
<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>
|
|
<a href="?m=logout&s={{ csrf_token('logout') }}" class="input__button input__button--new">Logout</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|