-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
92 lines (92 loc) · 2.62 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Konfigurátor</title>
<meta name="description" content="Konfigurátor úvodního slidu Czechitas." />
<link rel="shortcut icon" href="icons/icon-48x48.png" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap"
rel="stylesheet"
/>
<meta name="color-scheme" content="light dark" />
<meta name="theme-color" content="#000000" />
<link rel="manifest" href="webmanifest.json" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image"
content="https://intro.czechitas-podklady.cz/og-image.jpg"
/>
<script src="main.js" type="module"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="main-page">
<main class="main">
<h1>Czechitas konfigurátor intro slidu</h1>
<div class="preview">
<img class="preview-in" id="preview" />
</div>
<form action="slide.html">
<label>
Nadpis:
<textarea name="title" placeholder="Název akce"></textarea>
</label>
<label>
Řádek 1:
<input name="meta1" autocomplete="name" placeholder="Autor X Y" />
</label>
<label>
Řádek 2:
<input name="meta2" placeholder="Lektor: X Y" />
</label>
<label>
Řádek 3:
<input
name="meta3"
autocomplete="address-level2"
placeholder="Datum: XX. YY. ZZZZ"
/>
</label>
<label>
<span>
URL ikony:
<small>(server s obrázkem musí umožňovat vkládání)</small>
</span>
<input
type="url"
name="icon"
placeholder="https://placekitten.com/400/400"
/>
</label>
<div class="actions">
<button type="submit">Zobrazit výsledek</button>
<a id="download" download="thumbnail.png">
<button type="button">
Stáhnout
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
>
<path
d="M15.003 3h2.997v5h-2.997v-5zm8.997 1v20h-24v-24h20l4 4zm-19 5h14v-7h-14v7zm16 4h-18v9h18v-9z"
fill="currentColor"
/>
</svg>
</button>
</a>
</div>
<p class="note">
Doporučená velikost okna pro zobrazení výsledku je 16:9 (1920x1080
pixelů). Jiné formáty mohou vést k černým pruhům po stranách.
</p>
</form>
</main>
</div>
</body>
</html>