-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple-timer.html
24 lines (22 loc) · 1 KB
/
simple-timer.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
<!DOCTYPE HTML>
<html>
<head>
<title>Bacon Test</title>
<meta charset="utf-8">
<script type="application/javascript" src="js/vendor/jquery-1.11.0.js"></script>
<script type="application/javascript" src="js/vendor/bacon.js"></script>
<link rel="stylesheet" media="all" href="css/base.css">
</head>
<body>
<h1 class="title">The Reactive Timer!</h1>
<div class="contentBox">
<h3 class="contentBox-title"><span id="hour">00</span> : <span id="minutes">00</span> : <span id="seconds">00</span></h3>
<label class="contentBox-labelText">Set an alarm:</label> <input id="alarmTime" class="contentBox-inputText" type="text" placeholder="00:00:00"/> <button class="contentBox-button" id="setAlarm">Ok</button><br/>
</div>
<div class="resultBox">
<label>Your alarms:</label> <ul id="currentAlarm"></ul>
</div>
<script type="application/javascript" src="js/util.js"></script>
<script type="application/javascript" src="js/simple-timer.js"></script>
</body>
</html>