aboutsummaryrefslogtreecommitdiff
path: root/app/templates/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/login.html')
-rw-r--r--app/templates/login.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/templates/login.html b/app/templates/login.html
new file mode 100644
index 0000000..21ce281
--- /dev/null
+++ b/app/templates/login.html
@@ -0,0 +1,14 @@
+{% extends 'base.html' %}
+
+{% block content %}
+<form method="POST">
+ {{ form.csrf_token }}
+ <div>
+ {{form.username.label }}{{form.username}}
+ </div>
+ <div>
+ {{form.password.label}}{{form.password}}
+ </div>
+ {{form.submit}}
+</form>
+{% endblock %}