summaryrefslogtreecommitdiffstats
path: root/nfsw/templates
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-09-13 22:18:24 -0400
committerrsiddharth <s@ricketyspace.net>2019-09-13 22:18:24 -0400
commite2fe1b1d3a043d81fa992934a40f8138b8f1fea6 (patch)
tree92044cb226891d54f446e9583e3581cc59521cfe /nfsw/templates
parentf67d088496b6bb262dc527f8a96ceb4cc934eb33 (diff)
Add nfsw/templates/register.html
Diffstat (limited to 'nfsw/templates')
-rw-r--r--nfsw/templates/register.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/nfsw/templates/register.html b/nfsw/templates/register.html
new file mode 100644
index 0000000..1327512
--- /dev/null
+++ b/nfsw/templates/register.html
@@ -0,0 +1,30 @@
+
+{% extends 'base.html' %}
+
+{% block title %}Register{% endblock %}
+
+{% block content %}
+<div class="msg-block">
+ <div class="content">
+ {% for m in get_flashed_messages() %}
+ <p>{{ m }}</p>
+ {% endfor %}
+ </div>
+</div>
+
+<form 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="Register">
+ </div>
+</form>
+{% endblock %}