summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nfsw/templates/login.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/nfsw/templates/login.html b/nfsw/templates/login.html
new file mode 100644
index 0000000..4e523bf
--- /dev/null
+++ b/nfsw/templates/login.html
@@ -0,0 +1,29 @@
+{% extends 'base.html' %}
+
+{% block title %}Login{% endblock %}
+
+{% block content %}
+<div class="msg-block">
+ <div class="content">
+ {% for m in get_flashed_messages() %}
+ <p>{{ m }}</p>
+ {% endfor %}
+ </div>
+</div>
+
+<form class="login" method="post">
+ <div class="form-group">
+ <label for="username">Username</label>
+ <input name="username" class="username" required>
+ </div>
+
+ <div class="form-group">
+ <label for="password">Password</label>
+ <input type="password" name="password" class="password" required>
+ </div>
+
+ <div class="button-group">
+ <input type="submit" value="Login">
+ </div>
+</form>
+{% endblock %}