-
Notifications
You must be signed in to change notification settings - Fork 21
/
passwordResetPage.php
57 lines (48 loc) · 1.94 KB
/
passwordResetPage.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
<?php
include "./AdditionalPHP/startSession.php";
if(isset($_COOKIE['resetPassword'])){
define('Access', TRUE);
}
else {
echo 'Access Denied!';
}
?>
<!DOCTYPE html>
<html lang="en-MU">
<head>
<meta charset="utf-8">
<title>MALAKO | CHECK YOU EMAIL</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--CSS File-->
<link rel="stylesheet" type="text/css" href="Common.css">
<link rel="stylesheet" type="text/css" href="Account.css">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/0e16635bd7.js" crossorigin="anonymous"></script>
<!--BOXICONS-->
<link href='https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css' rel='stylesheet'>
<!-- Animate CSS -->
<link rel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
</head>
<body>
<?php $page = 'thankyouregistration';?>
<!--Start Navigation Bar-->
<?php include './Includes/MobileNavBar.php';;?>
<!--End Navigation Bar-->
<!--Start Navigation Bar @media 1200px-->
<?php include './Includes/PcNavBar.php';?>
<!--End Navigation Bar @media 1200px-->
<div class="mail-sent-group">
<div class="mail-sent-container">
<div class="mail-sent-image-container">
<div class="mail-forget-image"></div>
</div>
<div class="mail-sent-text">
<h1>Check your email!</h1>
<span class="message">Hooray! We sent you an email with your new password. Please change your password as soon as you login.</span>
<br><br>
<span class="tip">Tip: If you have not received the email, please check your Spam or Trash folder.</span>
</div>
</div>
</div>
</body>
</html>