forked from sacosta1369/COSC386Recycling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
executable file
·76 lines (60 loc) · 3.49 KB
/
contact.php
File metadata and controls
executable file
·76 lines (60 loc) · 3.49 KB
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
<DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name"viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="pageStyle.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@800&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<title>Recycling Database Interface</title>
</head>
<body>
<!-- Menu bar at top of page -->
<div id="menu">
<!-- Lower Eastern Shore Recycling Logo -->
<div id="logo" class="LogoClass">
</div>
<!-- Recycling dropdown menu -->
<div id="recycle" class="menuBox"><span>Recycle ▼</span>
</div>
<!-- Search tab -->
<div id="search" class = "menuBox"><span>Search</span>
</div>
<!-- Log in tab -->
<div id="admin" class = "menuBox">
<span>Log In</span> <img src="LogIn.png" alt="A log-in logo" id="login" class="menuImage">
<script type="text/javascript">
document.getElementById("admin").onclick = function() {
window.location.replace("login.php");
};
document.getElementById("logo").onclick = function() {
window.location.replace("index.php");
};
$(document).ready(function() {
$('.menuBox').mousedown(function(e) {
$(this).css("color", "#000000");
});
});
$(document).ready(function() {
$('.menuBox').mouseup(function(e) {
$(this).css("color", "#EDF5E1");
});
});
</script>
</div>
<!-- Contact info tab -->
<div id="contact" class = "menuBox"><span>Contact</span>
<img src="ContactInfo.png" alt="A contact logo" id="contactinfo" class="menuImage">
</div>
</div>
</body>
</html>