summaryrefslogtreecommitdiffstats
path: root/templates/index.html
blob: cb9c23808cfe393822bf1c539ce9a37ba1f95882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{%- extends 'base.html' %}
{%- from '_macros.html' import render_field %}
{%- block content %}
<p>Willkommen bei <strong>spline accounts</strong>!</p>
{%- if session.username %}
<p>Hallo {{ session.username }}. <a href="{{ url_for('settings') }}">Einstellungen</a></p>
{%- else %}
<p><a href="/register">Account erstellen</a></p>
<form action="" method="post">
  {{ render_field(form.username) }}
  {{ render_field(form.password) }}
  <input type="submit" value="Login" />
</form>
{%- endif %}
{%- endblock %}