summaryrefslogtreecommitdiff
path: root/tmpl/validate.tmpl
diff options
context:
space:
mode:
authorKyle McFarland <tfkyle@gmail.com>2018-01-31 00:51:07 -0600
committerKyle McFarland <tfkyle@gmail.com>2018-01-31 00:51:07 -0600
commit61d1aa04d8d44b17bfe6dace90088669fc6c3df8 (patch)
tree7ede15c880e4c41a18cded46fe6d03fb2dc4543b /tmpl/validate.tmpl
downloadmcoop-61d1aa04d8d44b17bfe6dace90088669fc6c3df8.zip
mcoop-61d1aa04d8d44b17bfe6dace90088669fc6c3df8.tar.gz
mcoop-61d1aa04d8d44b17bfe6dace90088669fc6c3df8.tar.bz2
Initial importHEADmaster
* Registration system's almost done * Just part way through implementing tasks So not much done yet, but it's a start.
Diffstat (limited to 'tmpl/validate.tmpl')
-rw-r--r--tmpl/validate.tmpl19
1 files changed, 19 insertions, 0 deletions
diff --git a/tmpl/validate.tmpl b/tmpl/validate.tmpl
new file mode 100644
index 0000000..ae32718
--- /dev/null
+++ b/tmpl/validate.tmpl
@@ -0,0 +1,19 @@
+{% extends "base.tmpl" %}
+
+{% block title %}Validate Email{% endblock %}
+
+{% block page_contents %}
+ <div class="row">
+ <div class="col-12"><h2>Validate Email Address</h2></div>
+ <div class="col-12"><hr style="border: 1px solid rgba(0, 0, 0, 1)"/></div>
+ <div class="col-12"><p>If for whatever reason you can&apos;t click on the link in the email you can manually enter your username and the validation code here to validate your email address, the validation code is everything to the right of vcode= (excluding the &apos;=&apos;) in the url</p></div>
+ </div>
+ <form action="validate.php" method="get">
+ <div class="row">
+ <div class="col-12 col-sm-4 col-md-3 col-lg-2">Username</div>
+ <div class="col-12 col-sm-8 col-md-9 col-lg-10"><input type="text" name="un" /></div>
+ <div class="col-12 col-sm-4 col-md-3 col-lg-2">Validation Code</div>
+ <div class="col-12 col-sm-8 col-md-3 col-lg-10"><input type="text" name="vcode" /></div>
+ <div class="col-12"><button class="btn btn-success" type="submit">Validate Email</button></div>
+ </div>
+{% endblock %}