-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.34 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
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<title>Návrh na vyznamenání Česka</title>
</head>
<body style="
background-color: black;
color: white;
">
<div style="display: -webkit-flex;
display: flex;
flex-direction: column;
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
-webkit-flex-direction: column; /* works with row or column */
justify-content: center;
">
<h2>
Generování návrhů na státní vyznamenání Česka
</h2>
<h4>
po vygenerování nutno vytisknout stažené PDF, vytisknout a zaslat na adresu Pražský Hrad, Praha, Česko
</h4>
<form method="GET" action="render.php">
<label for="name">Vložte jméno zaslouženého občana: </label>
<input type="text" id="name" name="name" required="required"><br/>
<label for="reason-pre-defined">Vybrat náhodný důvod: </label>
<input type="radio" name="reason" id="reason-pre-defined" value="pre-defined"><br/>
<label for="reason-custom">Napsat důvod vlastní: </label>
<input type="radio" name="reason" id="reason-custom" value="custom" checked="checked">
<input type="text" name="reason-custom-text"><br/>
<input type="submit" value="Vygenerovat formulář">
</form>
</div>
</body>
</html>