-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccount.html
More file actions
47 lines (44 loc) · 1.9 KB
/
account.html
File metadata and controls
47 lines (44 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Account - User Wallet</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Plus+Jakarta+Sans:wght@600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css">
<link rel="stylesheet" href="user-wallet-dashboard.css">
</head>
<body>
<div class="user-wallet">
<nav class="sidebar">
<div class="user-info">
<div class="profile-wrapper">
<img src="https://placehold.co/150x150/ffffff/ffffff" alt="User profile" class="profile-image">
<div class="notification-badge">4</div>
</div>
<h2 class="username">Username</h2>
<p class="user-id">User ID</p>
</div>
<ul class="nav-list">
<li class="nav-item active">Account</li>
<li class="nav-item"><a href="wallet.html">Wallet</a></li>
<li class="nav-item"><a href="purchase-history.html">Purchase History</a></li>
<li class="nav-item"><a href="logout.html">Log out</a></li>
</ul>
</nav>
<main class="main-content">
<h2>Account Settings</h2>
<p>Manage your account details here.</p>
<div class="account-settings">
<label>Username</label>
<input type="text" value="Username" disabled>
<label>Email</label>
<input type="email" value="user@example.com">
<label>Password</label>
<input type="password" placeholder="********">
<button class="save-button">Save Changes</button>
</div>
</main>
</div>
</body>
</html>