-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
84 lines (75 loc) · 2.05 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/styles/styles.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
display: flex;
height: 100vh;
}
.sidebar {
width: 200px;
background-color: #333;
padding-top: 20px;
color: white;
}
.sidebar ul {
list-style-type: none;
padding: 0;
}
.sidebar li {
padding: 10px;
text-align: center;
}
.sidebar a {
text-decoration: none;
color: white;
}
.content {
flex-grow: 1;
padding: 20px;
}
.settings-container {
background-color: #fff;
border: 2px solid #ddd;
border-radius: 8px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
color: #333;
}
.theme-toggle {
margin-bottom: 20px;
}
</style>
<title>Settings</title>
</head>
<body>
<div class="container">
<div class="sidebar">
<ul>
<li class="active"><a href="dashboard.html">Dashboard</a></li>
<li class="active"><a href="profile.php">Profil</a></li>
<li class="active"><a href="settings.html">Settings</a></li>
</ul>
</div>
<div class="settings-container">
<h2>Settings</h2>
<div class="theme-toggle">
<label for="themeSwitch">Toggle Theme:</label>
<input type="checkbox" id="themeSwitch">
</div>
</div>
</div>
</div>
<script src="assets/script/script.js"></script>
</body>
</html>