-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
66 lines (60 loc) · 1.75 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Formulier</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.contact-form {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
width: 100%;
max-width: 400px;
}
input, textarea {
width: calc(100% - 20px);
padding: 10px;
margin: 10px 0;
border-radius: 4px;
border: 1px solid #ccc;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="contact-form">
<h2>Contacteer Ons</h2>
<form action="/verwerk_contact" method="post">
<label for="naam">Naam:</label>
<input type="text" id="naam" name="naam" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="onderwerp">Onderwerp:</label>
<input type="text" id="onderwerp" name="onderwerp">
<label for="bericht">Bericht:</label>
<textarea id="bericht" name="bericht" rows="4" required></textarea>
<button type="submit">Verstuur</button>
</form>
</div>
</body>
</html>