-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (63 loc) · 2.46 KB
/
index.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
<!DOCTYPE html>
<html>
<head lang="en">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/home.css">
<meta charset="UTF-8">
<link href="favicon.ico" type="image/x-icon" rel="shortcut icon" />
<title>Timer!</title>
</head>
<body>
<div id="inputDiv">
<div class="form-group">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<input type="text" class="form-control" id="alertMessage" placeholder="Would you like a reminder with the alarm?">
</div>
<div class="col-sm-1"></div>
</div>
<br>
<br>
<br>
<br>
<form class="form-horizontal">
<div class="col-sm-6">
<input class="form-control" id="relativeInputField" placeholder="Relative Time in Minutes">
</div>
<div class="col-sm-6">
<input class="form-control" id="exactInputField" placeholder="Exact Time (HH:MM:SS, 24 Hours)">
</div>
<div class="col-sm-6">
<button type="button" class="btn btn-primary form-control" id="relativeTimerStartButton">Start Relative Timer</button>
</div>
<div class="col-sm-6">
<button type="button" class="btn btn-primary form-control" id="exactTimerStartButton">Start Exact Timer</button>
</div>
<div class="col-sm-12">
<button type="button" class="btn btn-primary form-control" id="quickTimerStartButton">Start Quick Timer</button>
</div>
</form>
</div>
<div id="waitingDiv">
<h1 id="messageSpan"></h1>
<h1 id="timerSpan"></h1>
<h1 id="endTimeSpan"></h1>
<div class="field">
<label for="autoRepeatCheckBox"><h1>Auto-repeat timer?</h1></label> <input type="checkbox" id="autoRepeatCheckBox">
</div>
<br>
<div id="stopCol" class="col-sm-4">
<button type="button" class="btn btn-primary form-control" id="stopButton">Stop</button>
</div>
<div id="snoozeCol" class="col-sm-4">
<button type="button" class="btn btn-primary form-control" id="snoozeButton">Snooze</button>
</div>
<div id="pauseCol" class="col-sm-4">
<button type="button" class="btn btn-primary form-control" id="pauseResumeButton">Pause</button>
</div>
</div>
<audio id="beepAudio" loop src="beep.wav"></audio>
<script src="js/home.js"></script>
</body>
</html>