-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.html
54 lines (52 loc) · 2.18 KB
/
settings.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Settings</title>
<link rel="stylesheet" href="doctordash.css">
</head>
<body>
<div class="container">
<!-- Sidebar (Common across all pages) -->
<aside>
<div class="toggle">
<div class="logo">
<img src="doctor-logo.png" alt="Doctor Logo">
<h2>Dr. Smith</h2>
</div>
<span id="close-btn" class="close">×</span>
</div>
<div class="sidebar">
<a href="dashboard.html"><span>🏠</span> Dashboard</a>
<a href="appointments.html"><span>📅</span> Appointments</a>
<a href="patients.html"><span>📋</span> Patients</a>
<a href="reports.html"><span>📈</span> Reports</a>
<a href="settings.html" class="active"><span>🗓</span> Settings</a>
<a href="logout.html"><span>🔒</span> Logout</a>
</div>
</aside>
<!-- Main Content -->
<main>
<h1>Settings</h1>
<section class="recent-orders">
<h2>Profile Settings</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" value="Dr. John Smith"><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" value="[email protected]"><br><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password"><br><br>
<input type="submit" value="Save Changes">
</form>
</section>
</main>
<!-- Right Section (Common across all pages) -->
<section class="right-section">
<!-- (Right section content remains the same as in `dashboard.html`) -->
</section>
</div>
<script src="index.js"></script>
</body>
</html>