-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
57 lines (51 loc) · 1.43 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
<!doctype html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wybory 2023 — licznik</title>
<meta name="description" content="Licznik odebranych kart do głosowania w wyborach i referendum 2023 dla członków obwodowych komisji wyborczych.">
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div class="group">
<button id="glosujacy-add">+</button>
<section>
<b id="glosujacy-count">0</b>
<h1>Głosujący</h1>
</section>
<button id="glosujacy-sub">-</button>
</div>
<div class="group">
<button id="sejm-add">+</button>
<section>
<b id="sejm-count">0</b>
<h1>Sejm</h1>
</section>
<button id="sejm-sub">-</button>
</div>
<div class="group">
<button id="senat-add">+</button>
<section>
<b id="senat-count">0</b>
<h1>Senat</h1>
</section>
<button id="senat-sub">-</button>
</div>
<div class="group">
<button id="referendum-add">+</button>
<section>
<b id="referendum-count">0</b>
<h1>Referendum</h1>
</section>
<button id="referendum-sub">-</button>
</div>
<footer>
<small id="offline-info"></small>
</footer>
<script type="module" src="/main.js"></script>
</body>
</html>