-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
46 lines (42 loc) · 1.04 KB
/
contact.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
<form method="post" action="contact.php">
<div class="form-floating mb-3 mt-3">
<input
type="text"
id="Name"
name="Name"
class="form-control"
placeholder="Name:"
/>
<label for="Name" class="form-label">Name:</label>
</div>
<div class="form-floating mb-3 mt-3">
<input
type="text"
id="Email"
name="Email"
class="form-control"
placeholder="E-Mail:"
/>
<label for="Email" class="form-label">E-Mail:</label>
</div>
<div class="form-floating mb-3 mt-3">
<input
type="text"
id="Betreff"
name="Betreff"
class="form-control"
placeholder="Betreff"
/>
<label for="Betreff" class="form-label">Betreff:</label>
</div>
<div class="form-floating mb-3 mt-3">
<textarea
id="Nachricht"
name="Nachricht"
class="form-control"
placeholder="Nachricht:"
></textarea>
<label for="Nachricht" class="form-label">Nachricht:</label><br />
</div>
<input type="submit" name="submit" class="button" />
</form>