summaryrefslogtreecommitdiff
path: root/modules/webcpanel/templates/default/nickserv/confirm.html
blob: 66dbe34df5872bb7cc16e363a306f66d77e597f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{INCLUDE header.html}
		<div class="panel-heading">Confirm your Email</div>
		<div class="panel-body">
			{FOR M IN MESSAGES}
			<div class="alert alert-info">
				{M}<br>
			</div>
			{END FOR}

			<em>You can <strong>CONFIRM</strong> your registration by entering your confirmation code below.</em>

			<hr>

			<h4>Confirm your account</h4>
			<form class="form-horizontal" method="post" action="/nickserv/confirm">
				<div class="form-group">
					<label class="control-label col-lg-2" for="confirm">Confirmation Code:</label>
					<div class="col-lg-5">
						<input class="form-control" type="text" name="code" id="code" placeholder="Code from Email">
					</div>
				</div>
				<div class="form-group">
					<div class="col-lg-offset-2 col-lg-5">
						<button type="submit" class="btn btn-primary">Confirm Me!</button>
					</div>
				</div>
			</form>
		</div>
{INCLUDE footer.html}