Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>De Pizzaknaller - Bestellen</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="header">
<h1>De Pizzaknaller</h1>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<form action="process_order.php" method="POST">
<h1>Bestel hier uw pizza's</h1>
<h1><button><a href="followOrder.php">Volg je order</a></button></h1>
<label for="name">Naam:</label>
<input type="text" id="name" name="name" required /><br />
<label for="phone">Telefoonnummer:</label>
<input
type="tel"
id="phone"
name="phone"
pattern="[0-9]{10}"
required
/><br />
<label for="email">E-mail:</label>
<input type="email" id="email" name="email" required /><br />
<label for="address">Adres:</label>
<textarea id="address" name="address" required></textarea><br />
<label for="pizza">Selecteer uw pizza:</label>
<select id="pizza" name="pizza" required>
<option value="Margherita">Margherita</option>
<option value="Pepperoni">Pepperoni</option></select
><br />
<label for="quantity">Hoeveelheid:</label>
<input
type="text"
id="quantity"
name="quantity"
pattern="[0-9]*"
required
/><br />
<input type="submit" value="Bestellen" />
</form>
<button><a href="adminlogin.php">Login as admin</a></button>
<script src="script.js"></script>
</body>
</html>