forked from supriya46788/Research-Paper-Organizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile-settings.html
More file actions
40 lines (40 loc) · 1.66 KB
/
profile-settings.html
File metadata and controls
40 lines (40 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Profile & Settings</title>
<link rel="stylesheet" href="css/profile-settings.css">
</head>
<body>
<div class="profile-settings-container">
<h1>User Profile & Settings</h1>
<form id="profileForm">
<section>
<h2>Account Information</h2>
<label>Email: <input type="email" id="email" name="email" disabled></label><br>
<label>Username: <input type="text" id="username" name="username"></label><br>
<button type="button" id="updateAccountBtn">Update Account</button>
</section>
<section>
<h2>Preferences</h2>
<label>Theme:
<select id="theme" name="theme">
<option value="light">Light</option>
<option value="dark">Dark</option>
</select>
</label><br>
<button type="button" id="updatePreferencesBtn">Save Preferences</button>
</section>
<section>
<h2>Notification Settings</h2>
<label><input type="checkbox" id="emailNotifications"> Email Notifications</label><br>
<label><input type="checkbox" id="pushNotifications"> Push Notifications</label><br>
<button type="button" id="updateNotificationsBtn">Save Notifications</button>
</section>
</form>
<div id="profileMessage"></div>
</div>
<script src="js/profile-settings.js"></script>
</body>
</html>