feat(index.html): add link to homepage to app name in header
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user