-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimer.html
45 lines (44 loc) · 1.38 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<head>
<script src="timer.js"></script>
<link rel="stylesheet" href="timer.css"/>
</head>
<body>
<div class="timer-container">
<div class="timer">
<span id="minutes">00</span>:<span id="seconds">00</span>
</div>
<div>
<button class="small timer-element" id="button-start">Start</button>
<button class="small timer-element" id="button-stop">Stop</button>
<button class="small timer-element" id="button-reset">Reset</button>
</div>
</div>
<div class="entry-container">
<div class="dropdown">
<button id="team-selection-button" class="dropdown dropdown-button timer-element" onclick="dropdownClicked(this)"/></button>
<div id="team-selection-content" class="dropdown dropdown-content">
<button class="dropdown dropdown-element" onclick="dropdownSelected(this)"></button>
</div>
</div>
<input id="code-field" class="code-field timer-element" type="text" maxLength="12" size="20" onKeyUp="codeEdited(this)">
<button id="submit" class="timer-element" onclick=submitted(this)>Ok</button>
</div>
<div class="result-container">
<table id="result-table" class="result-table">
<colgroup>
<col class="team-column">
<col class="success-column">
<col class="time-column">
</colgroup>
<tr class="result-header">
<th>Team</th>
<th>Erfolg?</th>
<th>Zeit</th>
</tr>
</table>
</div>
</body>
</html>