18 lines
597 B
HTML
18 lines
597 B
HTML
{% extends "_skel.html" %}
|
|
{% block title %}Log out{% endblock %}
|
|
{% block header_width %}max-w-xs{% endblock %}
|
|
{% block header_user %}{% endblock %}
|
|
{% from "_formhelpers.html" import render_field %}
|
|
{% block content %}
|
|
<div class="w-full max-w-xs mx-auto">
|
|
<form method="POST" class="card auth-form">
|
|
<h3>Are you sure you want to log out?</h3>
|
|
{{ form.csrf_token }}
|
|
{{ render_field(form.submit, False) }}
|
|
<p class="text-xs text-center">
|
|
<a class="link" href="{{ url_for('main.index') }}">cancel</a>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|