inital commit

This commit is contained in:
Ulrich Knechtelsdorfer
2016-02-13 16:18:48 +01:00
commit c84212e151
37 changed files with 1511 additions and 0 deletions

17
app/templates/login.html Normal file
View File

@@ -0,0 +1,17 @@
{% extends "base.html"%}
{% set title = "Login" %}
{% block content %}
<h3>TODO: </h3>
<ul>
<li>encrypt and salt passwords</li>
</ul>
<h1> Login </h1>
{% if error %}
<p>{{ error }}</p>
{% endif %}
<form name="login" method="post" action="/login">
Username:<input type="text" name=username required placeholder="Username"><br>
Passwort:<input type="password" name=password required placeholder="Password"><br>
<input type="submit" value="Login">
</form>
{% endblock %}