-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalbum.php
34 lines (29 loc) · 1.11 KB
/
album.php
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
<!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">
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
<title>Homepage</title>
</head>
<body>
<?php include "nav.php"; ?>
<div class="centered">
<form method="post" action="albumaction.php" class="formcenter">
<H2>Nieuwe album</H2>
<label for="titel">Titel?</label>
<input type="text" id="titel" name="titel">
<label for="artiest">Artiest?</label>
<input type="text" id="artiest" name="artiest">
<label for="genre">Genre?</label>
<input type="text" id="genre" name="genre">
<label for="prijs">Prijs?</label>
<input type="text" id="prijs" name="prijs">
<label for="voorraad">Voorraad? </label>
<input type="text" id="voorraad" name="voorraad">
<input name="submit" type="submit" value="submit" class="submit">
</form>
</div>
</body>
</html>