-
Notifications
You must be signed in to change notification settings - Fork 0
/
email-notify.php
61 lines (57 loc) · 2.38 KB
/
email-notify.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
include 'conn.php'; // Include db connection
include 'layouts/session.php';
// Retrieve email parameter from URL
$email = isset($_GET['email']) ? htmlspecialchars($_GET['email']) : '';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include 'layouts/title-meta.php'; ?>
<?php include 'layouts/head-css.php'; ?>
</head>
<body>
<div id="global-loader" >
<div class="whirly-loader"> </div>
</div>
<!-- Main Wrapper -->
<div class="main-wrapper">
<div class="account-content">
<div class="login-wrapper">
<div class="login-content">
<div class="login-userset">
<div class="login-userset">
<div class="login-logo logo-normal">
<img src="assets/img/My_Logo.png" alt="img">
</div>
</div>
<a href="index.php" class="login-logo logo-white">
<img src="assets/img/logo-white.png" alt="">
</a>
<div class="login-userheading text-center">
<h3>Verify Your Email</h3>
We have sent a verification link to <strong><?= htmlspecialchars($email) ?></strong>. Please follow the link
in the email to continue. If you do not see it in your inbox, kindly check your spam folder.
</div>
<!-- <div class="signinform text-center">
<h4>Didn't receive an email?</h4>
</div>
<div class="form-login">
<a class="btn btn-login" href="#">Resend link</a>
</div> -->
<div class="my-4 d-flex justify-content-center align-items-center copyright-text">
<p>Copyright © <?= date('Y') ?> Analytix Boost. All rights reserved</p>
</div>
</div>
</div>
<div class="login-img">
<img src="assets/img/authentication/email02.png" alt="img">
</div>
</div>
</div>
</div>
<!-- /Main Wrapper -->
<!-- JAVASCRIPT -->
<?php include 'layouts/vendor-scripts.php'; ?>
</body>
</html>