-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 1.46 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
<!DOCTYPE html>
<html lang='pl'>
<head>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title>Kalendarz</title>
<link rel='stylesheet' href='styles/main.css' />
<script defer src='scripts/main.js'></script>
</head>
<body>
<header>
<h1><span>Kalendarz dla Warhammera Fantasy</span></h1>
<h2><span>Edycja: <b id='ed'>II</b></span></h2>
<h3>
<button id='prevYear'><</button>
<span>Rok: <input name='year' id='year' value='0' size='0' title='year' placeholder='2522'></span>
<button id='nextYear'>></button>
</h3>
<h3><span>Nazwy:</span><button id='lang'>Polskie</button></h3>
<form id='loadFile'>
<label for='file'>Wczytaj plik:</label>
<br>
<input type='file' name='file' title='file'placeholder='wgraj plik z danymi...'>
</form>
<button id='saveFile'>Zapisz do pliku</button>
</header>
<main>
<div id='gray' style='display: none'>
<div id='editor'>
<h2 id='day'></h2>
<form>
<textarea title='day-desc' placeholder='wpisz opis dnia...'></textarea>
</form>
<span>
<button id='save'>Zapisz wpis</button>
<button id='close'>Zamknij</button>
</span>
</div>
</div>
</main>
</body>
</html>