-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
33 lines (28 loc) · 837 Bytes
/
profile.html
File metadata and controls
33 lines (28 loc) · 837 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
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel="stylesheet" href="pin.css">
</head>
<body>
<div class="profile-content">
<div class="profile-header">
<div class="profile-icon"></div>
<h2 class="profile-name">23IT021</h2>
<p class="profile-username">@23it021</p>
<div class="profile-actions">
<button class="profile-button">Share</button>
<button class="profile-button">Edit profile</button>
</div>
</div>
</div>
<script>
const userEmail = localStorage.getItem('userEmail');
if (userEmail) {
document.getElementById('userEmailDisplay').textContent = `Email: ${userEmail}`;
}
</script>
</body>
</html>