-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.html
65 lines (62 loc) · 2.57 KB
/
main.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
<!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 style="width:450px;">
<div class="container p-2" id="main">
<div class="text-center">
<img src="/assets/logo128.png">
</div>
<p class="text-center h3">StretchIt</p>
<hr class="w-25 py-0">
<p class="text-center lead">Helping to prevent computer usage injuries and maintain good productivity</p>
<hr class="w-75">
<div class="text-center col px-5">
<div class="row">
<button class="btn btn-success my-1 mx-2 col" id="silentBtn">Enable Silent Mode</button>
</div>
<div class="row">
<button class="btn btn-success my-1 ml-2 mr-1 col" id="stretches1Btn">See Hand Stretches</button>
<button class="btn btn-success my-1 mr-2 ml-1 col" id="stretches2Btn">See Body Stretches</button>
</div>
<div class="row">
<button class="btn btn-warning my-1 mx-2 col" id="settingsBtn">Open Settings</button>
</div>
</div>
<hr class="w-75">
<div class="my-2 text-center font-weight-bold text-info d-none" id="silentModeMsg">
<i class="fa fa-bed mr-2"></i>Silent mode is active
<hr class="w-75">
</div>
<p class="h4 text-center">Typing/Mousing Metrics</p>
<p class="text-center">
<div class="text-center font-weight-bold">Current typing character count</div>
<div class="text-center"><span id="currTypeCount">N/A</span> out of maximum <span id="maxTypeCount"></span> before next break</div>
</p>
<p class="text-center">
<div class="text-center font-weight-bold">Current mouse movement statistic</div>
<div class="text-center"><span id="currMouseCount">N/A</span> out of maximum <span id="maxMouseCount"></span> before next break</div>
</p>
<hr class="w-50">
<p class="h4 text-center">Timers</p>
<p class="text-center">
<div class="text-center font-weight-bold">Breaks</div>
<div class="text-center">Next reminder in <span id="breakReminderTimer">N/A</span></div>
</p>
<p class="text-center">
<div class="text-center font-weight-bold">Posture</div>
<div class="text-center">Next reminder in <span id="postureReminderTimer">N/A</span></div>
</p>
<p class="text-center">
<div class="text-center font-weight-bold">Water Breaks</div>
<div class="text-center">Next reminder in <span id="waterReminderTimer">N/A</span></div>
</p>
<hr class="w-75">
</div>
<script src='./js/main.js'></script>
<script src='./js/bootstrap/bootstrap.min.js'></script>
</body>
</html>