summaryrefslogtreecommitdiffstats
path: root/accounts/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/templates/base.html')
-rw-r--r--accounts/templates/base.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/accounts/templates/base.html b/accounts/templates/base.html
index f59408d..b97c5ed 100644
--- a/accounts/templates/base.html
+++ b/accounts/templates/base.html
@@ -17,9 +17,9 @@
<header>
<h1>
{%- if current_user.is_authenticated -%}
- <a href="{{ url_for('default.settings') }}">
- {%- else -%}
<a href="{{ url_for('default.index') }}">
+ {%- else -%}
+ <a href="{{ url_for('default.login') }}">
{%- endif -%}
<img src="{{ url_for('static', filename='logo.png') }}" alt="spline accounts" />
</a>
@@ -45,7 +45,7 @@
<li><a href="{{ url_for('default.logout') }}">Abmelden</a></li>
{%- else %}
<li>Nicht angemeldet</li>
- <li><a href="{{ url_for('default.index') }}">Login</a></li>
+ <li><a href="{{ url_for('default.login') }}">Login</a></li>
{%- endif %}
</ul>
</nav>