summaryrefslogtreecommitdiffstats
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html10
1 files changed, 4 insertions, 6 deletions
diff --git a/templates/index.html b/templates/index.html
index 6147883..abcbb1d 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -6,13 +6,11 @@
<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">
- <dl>
- {{ render_field(form.username) }}
- {{ render_field(form.password) }}
- </dl>
+<form action="{{ url_for('index') }}" method="post" class="form-horizontal">
+ {{ render_field(form.username) }}
+ {{ render_field(form.password) }}
{{ form.csrf_token }}
- <input type="submit" value="Login" />
+ <div class="form-actions"><input type="submit" value="Login" /></div>
</form>
{%- endif %}
{%- endblock %}