mirror of
https://github.com/Alvin-Zilverstand/Spik-en-span.git
synced 2026-03-06 11:17:09 +01:00
add ticket purchase form, employee login, and database schema
This commit is contained in:
28
index.html
28
index.html
@@ -10,7 +10,33 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="container mt-5">
|
||||
<h1 class="text-center">Koop je tickets voor Spik en Span!</h1>
|
||||
<form id="ticketForm" class="mt-4">
|
||||
<div class="mb-3">
|
||||
<label for="name" class="form-label">Naam</label>
|
||||
<input type="text" id="name" class="form-control" required>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="email" class="form-label">E-mailadres</label>
|
||||
<input type="email" id="email" class="form-control" required>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="ticketCategory" class="form-label">Categorie</label>
|
||||
<select id="ticketCategory" 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" 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>
|
||||
|
||||
Reference in New Issue
Block a user