-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomepage.php
More file actions
108 lines (92 loc) · 4.65 KB
/
homepage.php
File metadata and controls
108 lines (92 loc) · 4.65 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
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
<?php
// Include the database connection
include("database.php");
session_start(); // Start the session to access session variables
// Check if the user is logged in
if (!isset($_SESSION['username'])) {
header("Location: index.php");
exit();
}
// Fetch the username from the session
$username = $_SESSION['username'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Happy Ending</title>
<link rel="stylesheet" href="homepageStyle.css">
<link rel="shortcut icon" href="https://res.cloudinary.com/drkmgpcad/image/upload/v1726841328/rahjpg3k7mdtnow4ttux.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Beau+Rivage&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div>
<a class="logo-div" href="homepage.php" target="_self" onclick="showLoadingScreen('Loading...')">
<img src="https://res.cloudinary.com/drkmgpcad/image/upload/v1726841328/rahjpg3k7mdtnow4ttux.png" alt="Logo">
<h1>Happy Ending</h1>
</a>
</div>
<div id="search-container">
<input type="text" id="search-query" placeholder="Search..." oninput="searchProducts()">
<div id="search-results" class="search-results"></div>
</div>
<!-- Navigation Bar -->
<div class="navbar">
<div class="icons">
<span class="cart-icon"><a href=""><img src="Images/cart.png" alt="Cart" id="cartIcon"></a></span>
<div class="profile-dropdown">
<span class="profile-icon"><img src="Images/userIcon.png" alt="User Icon" id="userIcon"> </span>
<span class="username"><a href="myaccount.php" id="usernameLink"><?php echo htmlspecialchars($username); ?></a></span>
<ul class="dropdown-menu" id="dropdownMenu">
<li><a href="myaccount.php">My Account</a></li>
<li class="divider"></li>
<li><a href="#">My Purchases</a></li>
<li class="divider"></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</div>
</div>
</div>
</header>
<main>
<section class="ad-section">
<h1 class="ad-caption">A <i>goodbye</i> <br>with a <br><i>smile.</i></h1>
<img src="Images/adPhoto.png" alt="Ad Photo" class="ad-photo">
</section>
<section class="category-section">
<h1 class="category-heading">Categories</h1>
<div class="categories-container">
<span class="categories" id="coffinButton"><img src="https://res.cloudinary.com/drkmgpcad/image/upload/v1728994254/1_orc11q.png" alt="Coffin.png">
<p>Coffin</p>
</span>
<span class="categories"id="urnButton"><img src="https://res.cloudinary.com/drkmgpcad/image/upload/v1728994254/2_hbylkz.png" alt="Urn.png">
<p>urn</p>
</span>
</div>
</section>
<section class="product-section">
<h1 class="product-heading">Products</h1>
<div class="product-grid" id="productGrid"></div>
<div id="loading" style="display:none;">Loading more products...</div>
</section>
<div id="middle-buttons" class="hidden">
<button id="button1">Coffin</button>
<button id="button2">Urn</button>
</div>
</main>
<footer>
<p class="copyright">© 2024 Happy Ending. All rights reserved.</p>
<nav>
<ul>
<li class="about-us"><a href="#" onclick="showLoadingScreen('Loading...')" >ABOUT US</a></li>
<li ><a href="www.facebook.com" target="_blank" onclick="showLoadingScreen('Loading...')" ><img class="icons-picture" src="https://res.cloudinary.com/drkmgpcad/image/upload/v1724068194/angoienw2wu8c1aqdrge.png" alt="FB-logo"></a></li>
<li><a href="www.instagram.com" target="_blank" onclick="showLoadingScreen('Loading...')" ><img class="icons-picture" src="https://res.cloudinary.com/drkmgpcad/image/upload/v1726891138/zzzgspgokfq1sbc9sjmu.webp" alt="IG-logo"></a></li>
<li> <a href="www.x.com" target="_blank" onclick="showLoadingScreen('Loading...')" ><img class="icons-picture" src="https://res.cloudinary.com/drkmgpcad/image/upload/v1726890890/edvvrnyg1wewlm1onmzs.png" alt="X-logo"></a></li>
</ul>
</nav>
</footer>
<script src="homepageScript.js"></script>
</body>
</html>