form.html (649B) download
1<html lang="nl">
2<head>
3 <meta charset="UTF-8">
4 <meta http-equiv="X-UA-Compatible" content="IE=edge">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Awesome Form</title>
7</head>
8<body>
9
10<h1>Awesome form</h1>
11
12<form action="formtest.php" method="post">
13 <p>
14 <b>Naam:</b> <input type="text" name="naam" id="naam" placeholder="Naam komt hier">
15 <b>Email:</b> <input type="text" name="email" id="email" placeholder="E-mailadres">
16 <b>Formulier</b> <input type="file" name="bestand">
17 </p>
18
19 <p><input type="submit" name="submit" value="Ga los!"></p>
20
21</form>
22
23</body>
24</html>