summaryrefslogtreecommitdiffstats
path: root/templates/index.html
blob: abcbb1d6a7e1a296006091dd13468cd89a9426f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{%- 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="{{ url_for('index') }}" method="post" class="form-horizontal">
  {{ render_field(form.username) }}
  {{ render_field(form.password) }}
  {{ form.csrf_token }}
  <div class="form-actions"><input type="submit" value="Login" /></div>
</form>
{%- endif %}
{%- endblock %}