misuzu/views/auth/logout.twig

14 lines
595 B
Twig
Raw Normal View History

2018-03-22 02:56:41 +00:00
{% extends '@auth/master.twig' %}
{% block content %}
<div class="container logout">
<div class="logout__message">
<p class="logout__paragraph">We couldn't verify that you were actually the person attempting to log out.</p>
<p class="logout__paragraph">Press the button below to verify the logout request, otherwise click back in your browser or close this tab.</p>
</div>
<div class="logout__buttons">
2018-03-22 18:07:02 +00:00
<a href="?m=logout&amp;s={{ csrf_token() }}" class="button button--logout">Logout</a>
2018-03-22 02:56:41 +00:00
</div>
</div>
{% endblock %}