mirror of
https://github.com/Alvin-Zilverstand/Spik-en-span.git
synced 2026-03-06 11:17:09 +01:00
136 lines
5.1 KiB
HTML
136 lines
5.1 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">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg bg-body-tertiary">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="index.html">
|
|
<img src="assets/favicon.ico" alt="Bootstrap" width="30" height="24">
|
|
Spik & Span
|
|
</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" aria-current="page" href="index.html">
|
|
Home
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link active" aria-current="page" href="bestellen.html">
|
|
Tickets Bestellen</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="contact.html">
|
|
Contact
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="over-ons.html">
|
|
Over Ons
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="employee-login.html">
|
|
Medewerkers
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<video id="myVideo" autoplay loop class="background-video">
|
|
<source src="img/yt1z.net - Spik Span - Kampioene van de nach de11devande11de 2023 (720p) (1).mp4" type="video/mp4">
|
|
</video>
|
|
|
|
<button onclick="toggleVideo()">⏯
|
|
|
|
</button>
|
|
|
|
<script>
|
|
function toggleVideo() {
|
|
const video = document.getElementById('myVideo');
|
|
if (video.paused) {
|
|
video.play();
|
|
} else {
|
|
video.pause();
|
|
}
|
|
}
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <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>-->
|
|
|
|
<div id="carouselExampleIndicators" class="carousel slide size">
|
|
<div class="carousel-indicators">
|
|
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
|
|
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button>
|
|
</div>
|
|
<div class="carousel-inner">
|
|
<div class="carousel-item active">
|
|
<img src="img/vrij.jpg" class="d-block w-100" alt="...">
|
|
</div>
|
|
<div class="carousel-item">
|
|
<img src="img/za.jpg" class="d-block w-100" alt="...">
|
|
</div>
|
|
</div>
|
|
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="prev">
|
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
|
<span class="visually-hidden">Previous</span>
|
|
</button>
|
|
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="next">
|
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
|
<span class="visually-hidden">Next</span>
|
|
</button>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="script.js"></script>
|
|
|
|
</html> |