-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings1.html
More file actions
174 lines (171 loc) · 5.8 KB
/
settings1.html
File metadata and controls
174 lines (171 loc) · 5.8 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Preferences-PlanetHabits</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/bootstrap.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
/>
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="./resources/css1/settings1.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link
href="https://fonts.googleapis.com/css2?family=Lobster&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
</head>
<body class="body">
<nav class="navbar fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Home</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="offcanvas"
data-bs-target="#offcanvasNavbar"
aria-controls="offcanvasNavbar"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="offcanvas bg-primary offcanvas-end"
tabindex="-1"
id="offcanvasNavbar"
aria-labelledby="offcanvasNavbarLabel"
>
<div class="offcanvas-header">
<h5 class="offcanvas-title fw-bold" id="offcanvasNavbarLabel">
Planet Habits
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="offcanvas"
aria-label="Close"
></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="">Helpful Links</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Menu
</a>
<ul class="dropdown-menu bg-primary">
<li>
<a class="dropdown-item" href="habit-tracker-dashboard.html"
>Habit Tracker Dashboard</a
>
</li>
<li>
<a class="dropdown-item" href="my-progress.html"
>My Progress</a
>
</li>
<li>
<hr class="dropdown-divider" />
</li>
<li>
<a class="dropdown-item" href="settings1.html"
>Settings/Preferences</a
>
</li>
</ul>
</li>
</ul>
<form class="d-flex mt-3" role="search">
<input
class="form-control me-2"
type="search"
placeholder="Search"
aria-label="Search"
/>
<button class="btn btn-outline-success" type="submit">
Search
</button>
</form>
</div>
</div>
</div>
</nav>
<!--Hero section -->
<header class="header">
<div class="hero">
<div class="container-xl text-center">
<div class="row align-items-start">
<div class="col-12">
<div
class="text-container px-5 pb-4 d-flex flex-column justify-content-start h-100 mb-5"
>
<h3 class="name display-2 pb-2">
Track small changes. Make a big impact!
</h3>
<h4 class="pb-5"></h4>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="container">
<h1>Preferences</h1>
<form>
<div class="form-group">
<label for="theme">Theme</label>
<select id="theme" name="theme">
<option value="light">Light</option>
<option value="dark">Dark</option>
<option value="system">System Default</option>
</select>
</div>
<div class="form-group">
<label>
<input type="checkbox" id="notifications" name="notifications" />
Enable notifications
</label>
</div>
<div class="form-group">
<label>
<input
type="checkbox"
id="daily-reminders"
name="daily-reminders"
/>
Daily habit reminders
</label>
</div>
<div class="form-group">
<label for="language">Language</label>
<select id="language" name="language">
<option value="en">English</option>
<option value="es">Spanish</option>
<option value="fr">French</option>
<option value="de">German</option>
</select>
</div>
<button type="submit">Save Preferences</button>
</form>
</div>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>