-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcountdown.html
70 lines (65 loc) · 2.17 KB
/
countdown.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
<!doctype html>
<!--
* Count down
*
* Copyright (C) 2015 Jonas Lippuner ([email protected])
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
-->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Count down</title>
<meta name="description" content="A simple countdown" />
<meta name="author" content="Jonas Lippuner" />
<link rel="stylesheet" href="countdown.css" />
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="jquery-1.11.2.min.js"></script>
<script src="countdown.js"></script>
</head>
<body>
<div id="main_screen">
<table id="main_table">
<tr style="height: 10%;">
<td><span id="help_text"></span></td>
</tr>
<tr style="height: 65%;">
<td><span id="time"></span></td>
</tr>
<tr style="height: 15%;">
<td>
<div id="progressbar">
<div id="progressbar-value"></div>
</div>
</td>
</tr>
<tr id="config" style="height: 10%;">
<td>
Total time: <input id="total_time" type="text" name="total_time" />
Warn 1 time: <input id="warn_1_time" type="text" name="warn_1_time" />
Warn 2 time: <input id="warn_2_time" type="text" name="warn_2_time" />
<button id="set_config" type="button" name="set_config">Set times</button>
</td>
</tr>
</table>
</div>
</body>
</html>