-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
115 lines (75 loc) · 1.97 KB
/
index.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="Images/Favico/favico.png">
<style>
#mySearch {
background-color: Blue;
}
</style>
<?php include "includes/Header.php" ?>
<body>
<?php include "includes/headerTitle.php" ?>
<?php
?>
<?php include "includes/subMenuRibbon.php" ?>
<?php include "includes/dissappearingMessage.php" ?>
<?php include "includes/PDO_Database.php" ?>
<?php include "includes/Glass.php" ?>
<?php include "includes/Login.php" ?>
<div id="main-content">
<div>
<?php
if (isset($_POST['Submit'])) {
if (isset($_POST['searchText'])) {
getAllData($_POST['searchText']);
} else {
getAllData("");
}
} else {
getAllData("");
}
?>
</div>
</div>
<!-- Cookies! -->
<?php
$Cookie_Email = '';
$Cookie_Password = '';
if (isset($_COOKIE['Cookie_Email']) && isset($_COOKIE['Cookie_Password'])) {
$Cookie_Email = $_COOKIE['Cookie_Email'];
$Cookie_Password = $_COOKIE['Cookie_Password'];
}
?>
<!-- Cookies! -->
<div id="footer">
<?php include "includes/Footer.php" ?>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<h3>LOGIN</h3>
<form method="post" onsubmit="return false">
<input id="user" name="username" type="text" placeholder="Username"><br>
<input id="pass" name="pass" type="password" placeholder="••••••••••••">
<br>
<p>Either username or password is incorrect</p>
<input id="submit" type="submit" name="Submit">
</form>
</div>
</div>
<?php
if (isset($_POST['Submit'])) {
$email = $_POST['username'];
$password = $_POST['pass'];
if (Login($email, $password) == true) {
echo '<script src="scripts/UILoginChange.js">',
'login();',
'</script>';
}
}
?>
</body>
</html>