summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/auth/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'apioforum/templates/auth/login.html')
-rw-r--r--apioforum/templates/auth/login.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/apioforum/templates/auth/login.html b/apioforum/templates/auth/login.html
new file mode 100644
index 0000000..c0a2eed
--- /dev/null
+++ b/apioforum/templates/auth/login.html
@@ -0,0 +1,14 @@
+{% extends "base.html" %}
+{% block header %}
+ <h1>{% block title %}login{% 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="yes">
+</form>
+{% endblock %}