summaryrefslogtreecommitdiff
path: root/tmpl/validate.tmpl
blob: ae3271887567803f3b851dc19716266bb0d1f824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 %}