feat(index.html): add link to homepage to app name in header

This commit is contained in:
2025-06-16 10:34:10 +02:00
committed by Artur Borecki
parent 04c46f1e98
commit 446e5fbc04

View File

@@ -9,11 +9,11 @@
<body>
<div id="wrapper">
<header>
<h1>judas</h1>
<h1><a href="{{ url_for('index') }}">judas</a></h1>
{% if logged %}
<p>Welcome, {{ username }}! <a href="{{ url_for('logout') }}">Logout</a></p>
{% else %}
<p><a href="{{ url_for('login') }}">Login</a></p>
<p><a class="button" href="{{ url_for('login') }}">Login</a></p>
{% endif %}
</header>
</div>