mirror of
https://github.com/Alvin-Zilverstand/Spik-en-span.git
synced 2026-03-06 11:17:09 +01:00
53 lines
2.2 KiB
HTML
53 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Spik En Span</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
|
|
|
|
<body>
|
|
<nav class="navbar">
|
|
<ul class="nav-links">
|
|
<li><a href="#over-ons">Over ons</a></li>
|
|
<li><a href="#contact">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
|
|
<body>
|
|
<div class="container mt-5">
|
|
<h1 class="text-center">Koop je tickets voor Spik en Span!</h1>
|
|
<form id="ticketForm" action="process_ticket.php" method="POST" class="mt-4">
|
|
<div class="mb-3">
|
|
<label for="name" class="form-label">Naam</label>
|
|
<input type="text" id="name" name="name" class="form-control" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="email" class="form-label">E-mailadres</label>
|
|
<input type="email" id="email" name="email" class="form-control" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="ticketCategory" class="form-label">Categorie</label>
|
|
<select id="ticketCategory" name="category" class="form-select" required>
|
|
<option value="adult">Volwassenen</option>
|
|
<option value="child">Kinderen</option>
|
|
<option value="group">Groepen</option>
|
|
</select>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="ticketQuantity" class="form-label">Aantal tickets</label>
|
|
<input type="number" id="ticketQuantity" name="quantity" class="form-control" min="1" max="10" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Koop Tickets</button>
|
|
</form>
|
|
<div id="qrCodeContainer" class="mt-5 text-center"></div>
|
|
</div>
|
|
</body>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/qrcode/build/qrcode.min.js"></script>
|
|
<script src="script.js"></script>
|
|
</html> |