-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.html
More file actions
27 lines (26 loc) · 939 Bytes
/
Copy pathuser.html
File metadata and controls
27 lines (26 loc) · 939 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="user.css">
<link rel="icon" href="images/BB.ico">
<title>BB | User Profile</title>
</head>
<body>
<a href="home.html" class="back-btn">Back to Home</a>
<div class="profile-container">
<h1>User Profile</h1>
<div class="user-card">
<div class="user-info" id="user-info">
<p><strong>Name:</strong> <span id="user-name">Balance Buddy</span></p>
<p><strong>Email:</strong> <span id="user-email">balancebuddy@example.com</span></p>
</div>
<div class="btn-logout">
<button type="submit" id="logout">Log Out</button>
</div>
</div>
</div>
<script type="module" src="user.js"></script>
</body>
</html>