-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 2.1 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en" manifest="/cache.manifest">
<!-- OT Timer | (c) 2014 Alexandra Ellwood | MIT License wha -->
<head>
<meta charset="utf-8" />
<title>OT Timer</title>
<link rel="stylesheet" type="text/css" href="/css/common.css">
<!-- https://github.com/driftyco/ionicons | MIT License -->
<link rel="apple-touch-icon" href="/images/icon.png" />
<link rel="apple-touch-icon" sizes="76x76" href="/images/icon-76x76.png">
<link rel="apple-touch-icon" sizes="120x120" href="/images/icon-120x120.png">
<link rel="apple-touch-icon" sizes="152x152" href="/images/icon-152x152.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<script src="/javascript/jquery.min.js" type="text/javascript"></script>
<script src="/javascript/common.js" type="text/javascript"></script>
</head>
<body>
<div class="helper">
<div class="status">
<div><h1 class="label">Repetition</h1> <span class="value r">–</span></div>
<div class="p_counter"><h1 class="label">Position</h1> <span class="value p">–</span></div>
<div><h1 class="label">Seconds</h1> <span class="value s">–</span></div>
</div>
<div class="controls"><button class="next">Next</button> <button class="reset">Reset</button></div>
<hr />
<div class="config">
<div>
<input type="number" pattern="[0-9]*" id="pmax" min="1" value="1" />
<label for="pmax">position<span class="p_count_plural">s</span></label>
</div>
<div>
<input type="number" pattern="[0-9]*" id="smax" min="1" value="5" />
<label for="smax">second hold</label>
</div>
</div>
</div>
</body>
</html>