-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.htm
62 lines (55 loc) · 2.26 KB
/
index.htm
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<link rel="icon" href="static/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="static/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="static/timers.css" />
<script type="text/javascript" src="static/ajax.js"></script>
<script type="text/javascript" src="static/cookies.js"></script>
<script type="text/javascript" src="static/timers.js"></script>
<script type="text/javascript" src="static/glue2.js"></script>
<meta name="description" content="KITInfo Timers - Countdowns zu Klausuren & Events für Infos am KIT." />
<meta name="keywords" content="kit, informatik, timer, zeit, klausuren, irc, chat, kitinfo" />
<meta name="robots" content="index,follow" />
<title>KITInfo Timers</title>
</head>
<body onload="timerGlue.init();">
<div id="head">
<div id="head-bar">
<div class="head-block" id="intro-text">
Since ancient times, people have used timers.
Now you can, too! <br /> With the magical timers of <em>timers.kitinfo.de</em><br />
<div style="float:right;text-align:right;">
Brought to you by <a href="http://kitinfo.de/">#kitinfo</a><br/>
<span style="font-size:80%;">Source available <a href="https://github.com/kitinfo/timers">via Github</a></span>
</div>
</div>
<h1 class="head-block">Timers</h1>
<div class="head-block">
Max. Unit<br />
<select id="maxunit">
<option value="days" selected>Days</option>
<option value="hours">Hours</option>
<option value="minutes">Minutes</option>
<option value="seconds">Seconds</option>
</select>
</div>
<div class="head-block">
<em>Display mode</em><br/>
<select id="displaymode" onchange="timerGlue.modeSelectorChange();">
<option value="all" selected>Show all</option>
<option value="positive">Show selected</option>
<option value="negative">Hide selected</option>
</select>
</div>
<div class="head-block">
<em>API Status:</em><br/>
<span id="status-info">Waiting...</span>
</div>
</div>
</div>
<div id="timer-main">
</div>
</body>
</html>