-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule.php
More file actions
48 lines (48 loc) · 1.6 KB
/
schedule.php
File metadata and controls
48 lines (48 loc) · 1.6 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>schedule</title>
</head>
<body>
<?php
include_once('header.php');
?>
<hr>
<center>
<h1>Afspraak inplannen</h1>
<form action="./insert.php" method="post">
<ul>
<li>
<label for="first_name">Voornaam:</label>
<input type="text" name="first_name" id="first_name">
</li>
<li>
<label for="last_name">Achternaam:</label>
<input type="text" name="last_name" id="last_name">
</li>
<li>
<label for="phone">Mobiel:</label>
<input type="text" name="phone" id="phone">
</li>
<li>
<label for="email">Email Address:</label>
<input type="text" name="email" id="email">
</li>
<li>
<label for="date_time">Datum:</label>
<input type="date" name="date_time" id="date_time">
</li>
<br>
<label for="descr">Beschrijving:</label>
<br>
<textarea for ="descr" name="descr" id="descr" cols="30" rows="10" style="width: 360px; height: 120px;"></textarea>
<br>
<input type="submit" value="Verstuur">
</ul>
</form>
</center>
</body>
</html>