summaryrefslogtreecommitdiffstats
path: root/nfsw/templates/auth/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'nfsw/templates/auth/index.html')
-rw-r--r--nfsw/templates/auth/index.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/nfsw/templates/auth/index.html b/nfsw/templates/auth/index.html
new file mode 100644
index 0000000..5ca46ba
--- /dev/null
+++ b/nfsw/templates/auth/index.html
@@ -0,0 +1,27 @@
+{% extends 'base.html' %}
+
+{% block title %}Register{% endblock %}
+
+{% block content %}
+<div class="msg-block">
+ <div class="content">
+ <p></p>
+ </div>
+</div>
+
+<form class="auth" method="post">
+ <div class="form-group auth-user">
+ <label for="username">Username</label>
+ <input name="username" class="username">
+ </div>
+
+ <div class="form-group auth-pass">
+ <label for="password">Password</label>
+ <input type="password" name="password" class="password" disabled>
+ </div>
+
+ <div class="button-group">
+ <input type="submit" value="Start">
+ </div>
+</form>
+{% endblock %}