mirror of
https://github.com/Alvin-Zilverstand/Spik-en-span.git
synced 2026-03-06 11:17:09 +01:00
updae
This commit is contained in:
40
index.html
40
index.html
@@ -59,24 +59,6 @@
|
||||
|
||||
</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">
|
||||
@@ -105,28 +87,6 @@
|
||||
<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>
|
||||
|
||||
|
||||
@@ -23,3 +23,12 @@ document.getElementById('ticketForm').addEventListener('submit', function (e) {
|
||||
|
||||
alert('Ticket(s) successfully generated!');
|
||||
});
|
||||
|
||||
function toggleVideo() {
|
||||
const video = document.getElementById('myVideo');
|
||||
if (video.paused) {
|
||||
video.play();
|
||||
} else {
|
||||
video.pause();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user