From 61d1aa04d8d44b17bfe6dace90088669fc6c3df8 Mon Sep 17 00:00:00 2001
From: Kyle McFarland <tfkyle@gmail.com>
Date: Wed, 31 Jan 2018 00:51:07 -0600
Subject: Initial import

* Registration system's almost done
* Just part way through implementing tasks
So not much done yet, but it's a start.
---
 tmpl/validate.tmpl | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 tmpl/validate.tmpl

(limited to 'tmpl/validate.tmpl')

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 %}
-- 
cgit v1.1