summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html
index decff78..c28c8f4 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -13,7 +13,11 @@
</head>
<body>
- <h1>{% if title %}{{ title }}{% else %}spline accounts{% endif %}</h1>
+ <h1 id="header">Spline</h1>
+
+ {% if title %}
+ <h2>{{ title }}</h2>
+ {% endif %}
{%- if session.username %}
<p>Logged in as {{ session.username }}. <a href="{{ url_for('logout') }}">Log out</a></p>