-
Notifications
You must be signed in to change notification settings - Fork 0
/
verify.php
executable file
·73 lines (58 loc) · 1.98 KB
/
verify.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
62
63
64
65
66
67
68
69
70
71
72
73
<?php
session_start();
include '.classes/auth.php';
include '.classes/verify.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>Healthy Living</title>
<link rel="icon" href="images/yin-yang.jpg">
<meta name="description" content="Home Page">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/all_pages.css">
<link rel="stylesheet" href="css/BasicPages.css">
<link rel="stylesheet" href="css/slider.css">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<!-------------------------------------------- Header Menu -------------------------------------------------->
<?php
include 'header.php';
?>
<!------------------------------------------ End of Header Menu ---------------------------------------------------->
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<!------------------------------------------- Main Body ---------------------------------------------------->
<h3>Validate Page</h3>
<br>
<br>
<main>
<?php
verify_attempt_status();
?>
</main>
<br>
<br>
<!----------------------------------------- End of Main Body ---------------------------------------------->
<!------------------------------------------------ Footer ------------------------------------------------>
<?php
readfile('footer.html');
?>
<!--------------------------------------------- End of Footer ---------------------------------------------->
<script src="JavaScript/all_pages.js"></script>
</body>
</html>
<?php
$conn->close(); // close database connection
?>