-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkontakt.html
52 lines (52 loc) · 1.78 KB
/
kontakt.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
---
layout: layouts/sablona.njk
title: Kontakt
hero: kruzitko
herotext: herokontakt
menu: kontakt
---
<main class="form">
<div class="form_headline">
<h2 class="form">Napište zprávu...</h2>
<p>Tešíme se!</p>
</div>
<input type="hidden" name="_redirect" value="https://technickasazba.cz"
/>
<form method="POST" action="https://submit-form.com/kOwpO9oz" data-botpoison-public-key="pk_cd0c8186-782b-4078-85ac-7f4607a42545">
<div class="form-field">
<label for="jmeno" id="jmeno">Jméno<span class="required">*</span></label>
<input type="text" name="jmeno" id="jmeno" required>
</div>
<div class="form-field">
<label for="email" id="email">Email<span class="required">*</span></label>
<input type="email" name="email" id="email" required>
</div>
<div class="form-field">
<label for="tel" id="tel">Telefon</label>
<input type="tel" name="tel" id="tel">
</div>
<div class="form-field">
<label for="predmet" id="predmet">Předmět</label>
<select name="predmet" id="predmet">
<option></option>
<option>Dotaz</option>
<option>Chci korektury</option>
<option>Chci grafy</option>
<option>Chci grafiku</option>
<option>Chci něco jiného</option>
<option>Pozdrav</option>
</select>
</div>
<div class="form-field">
<label for="zprava" id="zprava">Zpráva</label>
<textarea name="zpráva" id="zprava" rows="7"></textarea>
</div>
<div class="form__checkbox">
<input type="checkbox" name="souhlas" id="souhlas" required>
<label for="checkbox" id="souhlas" name="souhlas">Souhlasím s kontaktem na základě odeslané zprávy.<span class="required">*</span></label>
</div>
<div class="send">
<button class="form-button" type="submit" name="odeslat" id="odeslat">Odeslat</button>
</div>
</form>
</main>