Initial commit

This commit is contained in:
Yusur 2019-05-01 15:33:28 +02:00
commit c33a74711c
15 changed files with 606 additions and 0 deletions

14
templates/login.html Normal file
View file

@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block body %}
<h2>Login</h2>
{% if error %}<p class=error><strong>Error:</strong> {{ error }}{% endif %}
<form action="{{ url_for('login') }}" method=post>
<dl>
<dt>Username:
<dd><input type=text name=username>
<dt>Password:
<dd><input type=password name=password>
<dd><input type=submit value=Login>
</dl>
</form>
{% endblock %}