-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
41 lines (35 loc) · 1.14 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="options.css" />
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="logo">
<img src="/images/logo.png" alt="logo" />
</div>
<p>Reminders to watch your breath and become more mindful throughout your day.</p>
</header>
<section>
<h2>Options</h2>
<h3>How often should the reminders appear?</h3>
<select id="interval">
<option selected value=60>1 hour</option>
<option value=30>30 minutes</option>
<option value=15>15 minutes</option>
</select>
<h3>How long should the reminder stay?</h3>
<select id="duration">
<option selected value=1>1 minute</option>
<option value=2>2 minutes</option>
<option value=10>10 minutes</option>
<option value=-1>Until I close it</option>
<option value=0>Clear automatically</option>
</select>
</section>
<div id="status"></div>
<button id="save">Save</button>
<script src="options.js"></script>
</body>
</html>