-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·76 lines (73 loc) · 3.17 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
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Concentration task</title>
<link rel="stylesheet" href="css/vendor/uniform.default.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div id="wrapper">
<div id="form">
<form action="">
<div class="form-group">
<h2>Music</h2>
<div class="form-row">
<label><input type="radio" name="option-music" checked value="0">No</label>
</div>
<div class="form-row">
<label><input type="radio" name="option-music" value="1">Yes</label>
</div>
</div>
<div class="form-group">
<h2>Random board</h2>
<div class="form-row">
<label><input type="radio" checked name="option-random-board" value="0">No</label>
</div>
<div class="form-row">
<label><input type="radio" name="option-random-board" value="1">Yes</label>
</div>
</div>
<div class="form-group">
<h2>Show timer</h2>
<div class="form-row">
<label><input type="radio" name="option-timer" value="0">No</label>
</div>
<div class="form-row">
<label><input type="radio" checked name="option-timer" value="1">Yes</label>
</div>
</div>
<!-- <div class="form-group">
<h2>Kierunek odliczania</h2>
<div class="form-row">
<div class="form-input">
<input type="radio" checked name="option-countdown" value="0">
</div>
<div class="form-label">Rosnąco</div>
</div>
<div class="form-row">
<div class="form-input">
<input type="radio" name="option-countdown" value="1">
</div>
<div class="form-label">Malejąco</div>
</div>
</div>
-->
<div class="form-submit">
<input class="form-input" type='submit' value='Start'>
</div>
</form>
</div>
<div id="board" style="display: none;">
<div id="timer"></div>
<div id="abort"><a href="">Home</a></div>
</div>
</div>
<footer>
Paweł Habrat & Maciej Krajowski-Kukiel © 2012
</footer>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/jquery.uniform.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>