-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathprofile.html
More file actions
89 lines (84 loc) · 4.4 KB
/
profile.html
File metadata and controls
89 lines (84 loc) · 4.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Profile | ChaatBazar</title>
<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=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/auth.css" />
<link rel="icon" href="favicon.png" type="image/png" />
</head>
<body data-page-type="profile">
<header>
<div class="header-inner container" role="banner">
<a href="index.html" class="logo" aria-label="ChaatBazar Home">ChaatBazar 🍴</a>
<nav role="navigation" aria-label="Primary Navigation">
<a href="index.html" class="nav-link">Home</a>
<a href="menu.html" class="nav-link">Menu</a>
<a href="index.html#about" class="nav-link">About</a>
<a href="orders.html" class="nav-link">Orders</a>
<a href="cart.html" class="nav-link">Cart</a>
<button id="theme-toggle" class="theme-toggle" aria-label="Toggle Theme">
<span class="theme-toggle-track">
<span class="theme-toggle-icon sun-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg>
</span>
<span class="theme-toggle-icon moon-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg>
</span>
<span class="theme-toggle-thumb"></span>
</span>
</button>
<div id="authNavItem" class="auth-nav-item">
<a href="login.html" class="login-btn-nav">Login</a>
</div>
</nav>
</div>
</header>
<main class="auth-main" role="main" aria-label="Profile page">
<div class="food-animation-bg" aria-hidden="true">
<span class="floating-food samosa">🥟</span>
<span class="floating-food pani-puri">🫓</span>
<span class="floating-food chaat">🍲</span>
<span class="floating-food chai">☕</span>
<span class="floating-food lassi">🥛</span>
</div>
<section class="auth-wrapper">
<div class="profile-page-card">
<div class="profile-page-header">
<div class="profile-avatar-hero" aria-hidden="true"><span id="profile-avatar-initial">U</span></div>
<h2>Your Profile</h2>
<p>Account details saved in your browser session.</p>
</div>
<div class="profile-info-list" aria-label="Profile details">
<div class="profile-info-row">
<span class="profile-info-label">Name</span>
<span id="profile-name-value" class="profile-info-value"></span>
</div>
<div class="profile-info-row">
<span class="profile-info-label">Email</span>
<span id="profile-email-value" class="profile-info-value"></span>
</div>
<div class="profile-info-row">
<span class="profile-info-label">Phone</span>
<span id="profile-phone-value" class="profile-info-value"></span>
</div>
<div class="profile-info-row">
<span class="profile-info-label">Location</span>
<span id="profile-location-value" class="profile-info-value"></span>
</div>
</div>
<div class="profile-actions">
<a href="dashboard.html" class="profile-action-link">Dashboard</a>
<a href="index.html" class="profile-action-link secondary">Back to Home</a>
</div>
</div>
</section>
</main>
<script src="js/auth.js"></script>
</body>
</html>