summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 %}