-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.php
97 lines (84 loc) · 5.05 KB
/
settings.php
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Settings</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<link href="https://cdn.lineicons.com/4.0/lineicons.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="../../assets/css/clinic.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
</head>
<body>
<div class="wrapper settings-page">
<?php require_once("clinic_sidebar.php"); ?>
<div class="main">
<nav class="navbar navbar-expand px-4 py-3">
<div class="navbar-collapse collapse">
<ul class="navbar-nav ms-auto">
<li class="nav-item dropdown">
<a href="#" data-bs-toggle="dropdown" class="nav-icon pe-md-0">
<img src="account.png" class="avatar img-fluid" alt="User Avatar">
</a>
<div class="dropdown-menu dropdown-menu-end rounded">
<a href="#" class="dropdown-item">Profile</a>
<a href="#" class="dropdown-item">Logout</a>
</div>
</li>
</ul>
</div>
</nav>
<main class="content px-3 py-4">
<h1 class="text-center mb-4">Settings</h1> <!-- Ensure heading is outside of the row -->
<div class="row justify-content-center" id="settings">
<div class="col-md-8">
<div class="card settings-card p-4">
<h5 class="card-title mt-4">Notifications</h5>
<hr>
<div class="form-check mb-2">
<input class="form-check-input" type="checkbox" id="emailNotifications">
<label class="form-check-label" for="emailNotifications">Email Notifications</label>
</div>
<div class="form-check mb-2">
<input class="form-check-input" type="checkbox" id="smsNotifications">
<label class="form-check-label" for="smsNotifications">SMS Notifications</label>
</div>
<div class="form-check mb-2">
<input class="form-check-input" type="checkbox" id="pushNotifications">
<label class="form-check-label" for="pushNotifications">Push Notifications</label>
</div>
<div class="form-check mb-2">
<input class="form-check-input" type="checkbox" id="newsletterSubscriptions">
<label class="form-check-label" for="newsletterSubscriptions">Newsletter Subscriptions</label>
</div>
<h5 class="card-title mt-3">Appearance</h5>
<hr>
<div class="form-check mb-2">
<input class="form-check-input" type="checkbox" id="darkMode">
<label class="form-check-label" for="darkMode">Dark Mode</label>
</div>
<div class="form-check mb-2">
<input class="form-check-input" type="checkbox" id="largeText">
<label class="form-check-label" for="largeText">Large Text</label>
</div>
<div class="form-check mb-2">
<input class="form-check-input" type="checkbox" id="highContrast">
<label class="form-check-label" for="highContrast">High Contrast</label>
</div>
<div class="form-check mb-2">
<input class="form-check-input" type="checkbox" id="compactMode">
<label class="form-check-label" for="compactMode">Compact Mode</label>
</div>
</div>
</div>
</div>
</main>
</div>
</div>
<script src="../assets/js/style.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>