-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile.html
75 lines (63 loc) · 2.47 KB
/
profile.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile - My GitHub.io Site</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>User Profile</h1>
<nav>
<a href="index.html">Home</a>
<a href="profile.html">Profile</a>
<a href="#" id="logoutLink">Logout</a>
</nav>
</header>
<main id="content">
<section id="profileSection">
<h2>Welcome, <span id="usernameDisplay"></span></h2>
<p>Update your account information below:</p>
<form onsubmit="return updatePassword()">
<label for="currentPassword">Current Password:</label>
<input type="password" id="currentPassword" required><br>
<label for="newPassword">New Password:</label>
<input type="password" id="newPassword" required><br>
<button type="submit">Update Password</button>
</form>
<p id="updateMessage"></p>
</section>
</main>
<footer>
<p></p>
</footer>
<script>
// Display logged-in user's name
const loggedInUser = localStorage.getItem('loggedInUser');
if (loggedInUser) {
document.getElementById('usernameDisplay').textContent = loggedInUser;
} else {
window.location.href = 'login.html'; // Redirect to login if not logged in
}
// Update Password Functionality
function updatePassword() {
const currentPassword = document.getElementById('currentPassword').value;
const newPassword = document.getElementById('newPassword').value;
const storedPassword = localStorage.getItem(loggedInUser);
if (storedPassword === currentPassword) {
localStorage.setItem(loggedInUser, newPassword);
document.getElementById('updateMessage').textContent = 'Password updated successfully!';
} else {
document.getElementById('updateMessage').textContent = 'Current password is incorrect.';
}
return false;
}
// Logout Functionality
document.getElementById('logoutLink').addEventListener('click', function() {
localStorage.removeItem('loggedInUser');
window.location.href = 'index.html';
});
</script>
</body>
</html>