-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactform.html
38 lines (30 loc) · 1.27 KB
/
contactform.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="de">
<head>
<meta charset="utf-8">
<title>title</title>
<link rel="stylesheet" type="text/css" href="contactform.css">
</head>
<body>
<form id="gform" method="POST" action="https://script.google.com/macros/s/AKfycbxTz6BL02M1pfn6XPnOwuUFSpKdWRq8r4UHtKey82Ey_SU9ANq9/exec">
<!-- change the form action to your script url -->
<input id="name" name="name" placeholder="Vorname Nachname"
required />
<input id="email" name="email" type="email" value=""
required placeholder="deine.email@adresse.de"/>
<span id="email-invalid" style="visibility:hidden">
Muss eine korrekte Email-Adresse sein</span>
<textarea id="message" name="message" rows="10" required placeholder="Deine Nachricht an uns"></textarea>
<button> Abschicken</button>
</form>
<!-- Customise the Thankyou Message People See when they submit the form: -->
<div id="thankyou_message">
<strong>Danke für Deine Nachricht<br/> und Dein Interesse</strong><br/>
Wir melden uns bald zurück.
</div>
<!-- Submit the Form to Google Using "AJAX" -->
<script data-cfasync="false" type="text/javascript"
src="form-submission-handler.js"></script>
<!-- END -->
</body>
</html>