-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.13 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.13 KB
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
<!DOCTYPE html>
<head>
<title>Sprawdź swoją zmianę</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<script src="shifts.js"></script>
<div id="wrapper">
<div class="content">
<h2 id="header">Sprawdź zmianę</h2>
<div id="input">
<input class="myButton" type="date" id="date-picker" />
<div id="buttons">
<input
type="radio"
name="day-or-night"
value="day"
id="day"
checked
/>
<label for="day">Dzień </label>
<input type="radio" name="day-or-night" value="night" id="night" />
<label for="night">Noc</label>
</div>
</div>
<div id="button-container">
<button
class="myButton"
id="date-button"
onclick="onClick()"
onfocus="blur('date-button')"
>
Oblicz
</button>
</div>
<h2 id="output">.</h2>
</div>
</div>
</body>