-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooking.html
52 lines (49 loc) · 1.87 KB
/
booking.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/booking.css" />
<title>Anfrage</title>
</head>
<body>
<div class="backgrounds">
<!-- Header Section -->
<h1 class="buchungsanfrage">Buchungsanfrage</h1>
<!-- Booking Form Section -->
<div class="booking-form">
<form
action="https://formspree.io/f/mrgnyeyk"
method="POST"
class="hintergrundform"
>
<input type="text" name="firstname" placeholder="Vorname" required />
<input type="text" name="lastname" placeholder="Nachname" required />
<input type="hidden" name="_subject" value="Neue Buchungsanfrage" />
<input type="text" name="_honey" style="display: none" />
<input type="email" id="email" name="email" placeholder="E-Mail" required />
<input type="tel" name="phone" placeholder="Telefonnummer" required />
<input
type="text"
name="eventType"
placeholder="Veranstaltungsart (z. B. Hochzeit, Konzerte, Firmenevents etc.)"
required
/>
<input type="date" name="date" placeholder="Datum" required />
<input type="text" name="location" placeholder="Ort" />
<input type="text" name="budget" placeholder="Budget" required />
<textarea
name="notes"
placeholder="Zusätzliche Anmerkungen"
rows="5"
></textarea>
<button type="submit">Anfrage senden</button>
</form>
</div>
<!-- Back Button Section -->
<div class="back-home-button3">
<a href="index.html">Zurück zur Startseite</a>
</div>
</div>
</body>
</html>