Add a function login template

Fix #1
This commit is contained in:
Maximilian Friedersdorff 2022-07-06 22:12:03 +01:00
parent 781e633abc
commit 9a5bedabca

View file

@ -1,4 +1,10 @@
{% extends "base.html" %}
{% block content %}
<h1>Login</h1>
<form action="" method="post">
{% csrf_token %}
{{ form }}
<input type="submit", value="Post">
</form>
{% endblock content %}