summaryrefslogtreecommitdiffstats
path: root/nfsw/templates
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-09-13 22:19:13 -0400
committerrsiddharth <s@ricketyspace.net>2019-09-13 22:19:13 -0400
commitc84689e655694701360ec0203178871163f6cc27 (patch)
tree5dc305697a6afc9974400316184d62883f25aef6 /nfsw/templates
parent2518c493bd59430ab4c233e2ea7ea835565d7ba8 (diff)
Add nfsw/templates/terms.html.
Diffstat (limited to 'nfsw/templates')
-rw-r--r--nfsw/templates/terms.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/nfsw/templates/terms.html b/nfsw/templates/terms.html
new file mode 100644
index 0000000..541a371
--- /dev/null
+++ b/nfsw/templates/terms.html
@@ -0,0 +1,30 @@
+{% extends 'base.html' %}
+
+{% block title %}Terms{% endblock %}
+
+{% block content %}
+<div class="terms-block">
+ <div class="msg-block">
+ <div class="msg">
+ <p></p>
+ </div>
+ </div>
+
+ <div class="meat">
+ <p>The nasty terms and conditions</p>
+ </div>
+
+ <form class="agree" method="post">
+ <div class="form-group agree">
+ <label for="agree">
+ <input type="checkbox" name="agree" class="agree" value="1">
+ I agree
+ </label>
+ </div>
+
+ <div class="button-group">
+ <input type="submit" value="Submit">
+ </div>
+ </form>
+</div>
+{% endblock %}