Files
chrani-bot-tng/bot/modules/webserver/templates/frontpage/header.html
2025-11-21 07:26:02 +01:00

15 lines
343 B
HTML

<div id="header_widgets">
<div id="login_logout_widget" class="widget">
<div>
{% if current_user.is_authenticated %}
<a href="/logout" title="{{ current_user.id }}">log out</a>
{%- else %}
<a href="/login">log in</a>
{%- endif %}
</div>
</div>
</div>
<hgroup>
<h1>{{ title }}</h1>
</hgroup>