-
Notifications
You must be signed in to change notification settings - Fork 0
/
email-verification.php
34 lines (31 loc) · 1.06 KB
/
email-verification.php
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
30
31
32
33
34
<?php
include 'pages/common/header.php';
include 'controllers/users/verify-handler.php';
?>
<!-- Sub Menu -->
<div class="sub-header fs-6 fw-lighter">
<a class="sub-nav">Email Verification</a>
</div>
<!-- Activation -->
<section id="verification" class="sign">
<div class="container py-3 h-100">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col-12 col-md-8 col-lg-6">
<div class="card bg-dark text-white">
<div class="card-body p-5">
<div class="mt-md-3">
<form action="verify" method="get">
<?php
echo "<span class='text-danger' style='text-align:center;display:block;'> " . $error . "</span><br>";
?>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<?php
include 'pages/common/footer.php';
?>