first blueprints

This commit is contained in:
Johannnes Bürst
2020-03-18 11:35:27 +01:00
parent 8936ed9306
commit 14ebf71f2f
16 changed files with 472 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}Log In{% endblock %}</h1>
{% endblock %}
{% block content %}
<form method="post">
<label for="username">Username</label>
<input name="username" id="username" required>
<label for="password">Password</label>
<input type="password" name="password" id="password" required>
<input type="submit" value="Log In">
</form>
{% endblock %}