-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
76 lines (76 loc) · 3.33 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
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/font-awesome.min.css">
</head>
<body>
<div class="container p-2" id="settings">
<p class="h3 text-center font-weight-bold">StretchIt Settings</p>
<hr class="w-50">
<form id="settingsForm">
<p class="text-center font-weight-bold">
How often do you want to be reminded about posture?
</p>
<p class="small w-100 text-center">
<span class="d-inline mr-2">Not often</span><input type="range" class="mt-1 form-control-inline w-50" min="0" max="4" value="3" name="posturefreq"><span class="d-inline ml-2">Very often</span>
</p>
<hr class="w-25">
<p class="text-center font-weight-bold">
How often do you want to be reminded about taking breaks?
</p>
<p class="small w-100 text-center">
<span class="d-inline mr-2">Not often</span><input type="range" class="mt-1 form-control-inline w-50" min="0" max="4" value="3" name="breakfreq"><span class="d-inline ml-2">Very often</span>
</p>
<hr class="w-25">
<p class="text-center font-weight-bold">
How often do you want to be notified about stretches?
</p>
<p class="small w-100 text-center">
<span class="d-inline mr-2">Not often</span><input type="range" class="mt-1 form-control-inline w-50" min="0" max="4" name="stretchfreq"><span class="d-inline ml-2">Very often</span>
</p>
<hr class="w-50">
<p class="text-center mt-2 mb-1 font-weight-bold">What metrics should be used to send remiders?</p>
<div class="text-center">
<div class="form-check-inline">
<input type="checkbox" class="form-check-input" name="metrics" value="typing" checked>
<span class="form-check-label">Track typing amount</span>
</div>
<div class="form-check-inline">
<input type="checkbox" class="form-check-input" name="metrics" value="mouse" checked>
<span class="form-check-label">Track mouse usage</span>
</div>
</div>
<p class="small text-info text-center my-1">The more of these you select, the more accurate the break/stretch/posture reminders will be.</p>
<hr class="w-50">
<p class="text-center mt-2 mb-1 font-weight-bold">What type of reminders would you like?</p>
<div class="text-center">
<div class="form-check-inline">
<input type="checkbox" class="form-check-input" name="remindtype" value="breaks" checked>
<span class="form-check-label">Break reminders</span>
</div>
<div class="form-check-inline">
<input type="checkbox" class="form-check-input" name="remindtype" value="posture" checked>
<span class="form-check-label">Posture reminders</span>
</div>
<div class="form-check-inline">
<input type="checkbox" class="form-check-input" name="remindtype" value="water" checked>
<span class="form-check-label">Water break reminders</span>
</div>
</div>
<hr class="w-25">
<div class="text-center">
<input type="submit" class="btn btn-success px-5" value="Update!">
<p class="my-2">
<span id="resMsg"></span>
</p>
</div>
</form>
</div>
<script src='./js/jquery.min.js'></script>
<script src='./js/options.js'></script>
<script src='./js/popper.min.js'></script>
<script src='./js/bootstrap.min.js'></script>
</body>
</html>