forked from RevoSam/GeorgiasGreens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgotpassword.php
92 lines (85 loc) · 3.05 KB
/
forgotpassword.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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<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="styles.css" />
<title>User Login</title>
<link rel="icon" href="assets/GGLogoPicture.png"/>
</head>
<body>
<div class="header"><a href="index.php"><img class = "header-image" src="assets/GGLogo.png" width="350"></a>
<?php
if (isset($_SESSION["firstname"])) {
$name = $_SESSION["firstname"];
echo '<div class="header-user-display">';
echo "<h2>Welcome, {$name}!</h2>";
echo "</div>";
}
?>
</div>
<div class="blank"></div>
<div class="row">
<div class="col-4 menu">
<div class="dropdown">
<a id="firstLink" class="nav">Aisles</a>
<div class="dropdown-content">
<a class="dropdown-menu" href="../Meat/Meat.php">Meat</a>
<a class="dropdown-menu" href="../FruitsVegetables/FruitsVegetables.php">Fruits & Vegetables</a>
<a class="dropdown-menu" href="../Bakery/Bakery.php">Bakery</a>
<a class="dropdown-menu" href="../Pantry/Pantry.php">Pantry</a>
<a class="dropdown-menu" href="../Dairy/Dairy.php">Dairy</a>
<a class="dropdown-menu" href="../CleaningSupplies/CleaningSupplies.php">Cleaning Supplies</a>
</div>
</div>
<?php
if (isset($_SESSION["id_user"])) {
echo '<a class="nav" href="login.php?logout=true">Log out</a>';
}
else {
echo '<a class="nav" href="login.php">Sign in</a>';
}
?>
<a class="nav" href="shoppingcart.php">Check out</a>
<input type="text" placeholder="Search for a product..." />
</div>
</div>
<div class="forgot-password-page">
</div>
<div class="footer">
<div id="link-list-left">
<p><strong>Useful Links</strong></p>
<a href="#">Page 1</a></a><br>
<a href="#">Page 2</a></a><br>
<a href="#">Page 3</a></a><br>
<a href="#">Page 4</a></a><br>
<a href="#">Page 5</a></a><br>
<a href="#">Page 6</a></a><br>
<a href="#">Page 7</a></a><br>
<a href="#">Page 8</a></a><br>
</div>
<div id="link-list-right">
<p><strong>Useful Links</strong></p>
<a href="#">Page X</a></a><br>
<a href="#">Page 2</a></a><br>
<a href="#">Page 3</a></a><br>
<a href="#">Page 4</a></a><br>
<a href="#">Page 5</a></a><br>
<a href="#">Page 6</a></a><br>
<a href="#">Page 7</a></a><br>
<a href="#">Page 8</a></a><br>
</div>
<div id="contact-info">
<p><strong>OUR SOCIALS</strong></p><br>
<a href="#" style="padding: 5px;"><img src="assets/FBLogo.png"></a>
<a href="#" style="padding: 5px;"><img src="assets/TwitterLogo.png"></a>
<a href="#" style="padding: 5px;"><img src="assets/InstaLogo.png"></a>
<a href="https://youtu.be/dQw4w9WgXcQ" style="padding: 5px;" target="_blank"><img src="assets/YTLogo.png"></a>
</div>
</div>
</body>
</html>