You've already forked snikket-web-portal
20 lines
816 B
HTML
20 lines
816 B
HTML
{% extends "app.html" %}
|
|
{% from "library.j2" import icon %}
|
|
{% block head_lead %}
|
|
<title>Snikket Web Portal</title>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div class="form layout-expanded"><form method="POST">
|
|
<h2 class="form-title">{% trans %}Sign out of the Snikket Web Portal{% endtrans %}</h2>
|
|
<p class="form-desc">{% trans %}Click below to log yourself out of the web portal. This does not affect any other connected devices.{% endtrans %}</p>
|
|
{{ form.csrf_token }}
|
|
<div class="f-bbox">
|
|
{#- -#}
|
|
<a href="{{ url_for('user.index') }}" class="button secondary">{% call icon("back") %}{% endcall %}{% trans %}Back{% endtrans %}</a>
|
|
{#- -#}
|
|
<button type="submit" class="primary">{% call icon("logout") %}{% endcall %}{% trans %}Sign out{% endtrans %}</button>
|
|
{#- -#}
|
|
</div>
|
|
</form></div>
|
|
{% endblock %}
|