You've already forked snikket-web-portal
10 lines
361 B
HTML
10 lines
361 B
HTML
{% extends "unauth.html" %}
|
|
{% from "library.j2" import standard_button %}
|
|
{% block head_lead %}
|
|
<title>{% trans %}Snikket Web Portal{% endtrans %}</title>
|
|
{% endblock %}
|
|
{% block topbar_right %}
|
|
{{- super() -}}
|
|
{% call standard_button("logout", url_for("user.logout"), class="tertiary slimmify") %}{% trans %}Log out{% endtrans %}{% endcall %}
|
|
{%- endblock %}
|