-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (68 loc) · 3.03 KB
/
index.html
File metadata and controls
69 lines (68 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Northeast India Arts & Crafts</title>
<link rel="stylesheet" href="public/css/index.css">
</head>
<body>
<header>
<div class="container">
<div class="logo-container">
<img src="public/images/zirocraft-logo.jpg" alt="ZiroCraft Logo" class="logo">
<h1>Explore Northeast India's Traditional Arts & Crafts</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="public/pages/products.html">Products</a></li>
<li><a href="public/pages/artisans.html">Artisans</a></li>
<li><a href="public/pages/cart.html">Cart</a></li>
<li id="user-profile-container" class="user-profile" style="display: none;">
<span class="user-name" id="user-name"></span>
<div class="profile-icon" id="profile-icon"></div>
<div class="profile-dropdown" id="profile-dropdown">
<a href="public/pages/profile.html" class="profile-dropdown-item">My Profile</a>
<a href="public/pages/cart.html" class="profile-dropdown-item">My Orders</a>
<a href="#" class="profile-dropdown-item logout-btn" id="logout-btn">Logout</a>
</div>
</li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<div class="hero-content">
<h2>Bringing the Art of Northeast India to the World</h2>
<p>Discover handcrafted treasures by skilled artisans, preserving cultural heritage and supporting local communities.</p>
<a href="public/pages/products.html" class="btn">Shop Now</a>
</div>
</section>
<!-- Login Form - Will be hidden when user is logged in --> -->
<div class="login-container" id="login-container">
<h2>Login</h2>
<input type="email" id="email" placeholder="Enter your email">
<input type="password" id="password" placeholder="Enter your password">
<button onclick="login()">Login</button>
<a href="public/pages/signup.html" class="signup-link">Don't have an account? Sign Up</a>
</div>
<section class="quiz-section">
<h2>Take the Quiz and Learn More!</h2>
<div id="quiz-container">
<p id="question"></p>
<div id="options"></div>
<p id="result"></p>
</div>
</section>
<script src="public/js/index.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
let userLoggedIn = true; // Replace with actual login check
if (userLoggedIn) {
document.getElementById("quiz-container").style.margin = "auto"; // Remove negative margin
}
});
</script>
</body>
</html>