mirror of
https://github.com/Alvin-Zilverstand/Spik-en-span.git
synced 2026-03-06 11:17:09 +01:00
add 'Tickets Bestellen' link to navigation and create bestellen.html page
This commit is contained in:
72
bestellen.html
Normal file
72
bestellen.html
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Tickets Bestellen - 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>
|
||||||
|
|
||||||
|
<div class="container mt-5">
|
||||||
|
<h1 class="text-center">Bestel Tickets</h1>
|
||||||
|
<div class="item-container">
|
||||||
|
<div class="item">
|
||||||
|
<img src="assets/item1.jpg" alt="Item 1">
|
||||||
|
<h5>Volwassenen Ticket</h5>
|
||||||
|
<p>Toegang voor één volwassene.</p>
|
||||||
|
<a href="vrijdag.html" class="btn btn-primary">Bestel Nu</a>
|
||||||
|
</div>
|
||||||
|
<div class="item">
|
||||||
|
<img src="assets/item2.jpg" alt="Item 2">
|
||||||
|
<h5>Kinderen Ticket</h5>
|
||||||
|
<p>Toegang voor één kind.</p>
|
||||||
|
<a href="zaterdag.html" class="btn btn-primary">Bestel Nu</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -42,6 +42,10 @@
|
|||||||
Home
|
Home
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link active" aria-current="page" href="bestellen.html">
|
||||||
|
Tickets Bestellen</a>
|
||||||
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link active" href="contact.html">
|
<a class="nav-link active" href="contact.html">
|
||||||
Contact
|
Contact
|
||||||
|
|||||||
@@ -45,6 +45,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
<!--
|
||||||
<div class="container mt-5">
|
<div class="container mt-5">
|
||||||
<h1 class="text-center">Medewerker Login</h1>
|
<h1 class="text-center">Medewerker Login</h1>
|
||||||
<form id="loginForm" action="process_login.php" method="POST" class="mt-4">
|
<form id="loginForm" action="process_login.php" method="POST" class="mt-4">
|
||||||
@@ -59,6 +60,7 @@
|
|||||||
<button type="submit" class="btn btn-primary">Inloggen</button>
|
<button type="submit" class="btn btn-primary">Inloggen</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
-->
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
44
index.html
44
index.html
@@ -7,7 +7,6 @@
|
|||||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
<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="stylesheet" href="style.css">
|
||||||
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
|
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@@ -38,23 +37,11 @@
|
|||||||
Over Ons
|
Over Ons
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link active" href="employee-login.html">
|
|
||||||
Medewerkers
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<H1>KAMPIOENEN VAN DE NACH</H1>
|
|
||||||
|
|
||||||
<video autoplay loop class="background-video">
|
|
||||||
<source src="img/yt1z.net - Spik Span - Kampioene van de nach de11devande11de 2023 (720p) (1).mp4" type="video/mp4">
|
|
||||||
<button onclick="toggleVideo()">⏯ Video pauzeren/afspelen</button>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- <div class="container mt-5">
|
<!-- <div class="container mt-5">
|
||||||
<h1 class="text-center">Koop je tickets voor Spik en Span!</h1>
|
<h1 class="text-center">Koop je tickets voor Spik en Span!</h1>
|
||||||
<form id="ticketForm" action="process_ticket.php" method="POST" class="mt-4">
|
<form id="ticketForm" action="process_ticket.php" method="POST" class="mt-4">
|
||||||
@@ -83,17 +70,28 @@
|
|||||||
<div id="qrCodeContainer" class="mt-5 text-center"></div>
|
<div id="qrCodeContainer" class="mt-5 text-center"></div>
|
||||||
</div>-->
|
</div>-->
|
||||||
|
|
||||||
<div class="container">
|
<div id="carouselExampleIndicators" class="carousel slide size">
|
||||||
<h2>Spik&Span</h2>
|
<div class="carousel-indicators">
|
||||||
<p>Heb je vragen of wil je contact opnemen? Vul het onderstaande formulier in.</p>
|
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
|
||||||
<form action="#" method="post">
|
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button>
|
||||||
<input type="text" name="naam" placeholder="Je naam" required>
|
</div>
|
||||||
<input type="email" name="email" placeholder="Je e-mail" required>
|
<div class="carousel-inner">
|
||||||
<textarea name="bericht" placeholder="Je bericht" rows="5" required></textarea>
|
<div class="carousel-item active">
|
||||||
<button type="submit">Verstuur</button>
|
<img src="img/vrij.jpg" class="d-block w-100" alt="...">
|
||||||
</form>
|
</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>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
@@ -39,6 +39,10 @@
|
|||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
|
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link active" aria-current="page" href="bestellen.html">
|
||||||
|
Tickets Bestellen</a>
|
||||||
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link active" href="contact.html">Contact</a>
|
<a class="nav-link active" href="contact.html">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
121
style.css
121
style.css
@@ -13,13 +13,12 @@
|
|||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar {
|
.navbar {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: right;
|
align-items: right;
|
||||||
justify-content: right;
|
justify-content: right;
|
||||||
background-color: #000;
|
background-color: #000;
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
color: black;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
@@ -45,105 +44,45 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.section{
|
.section{
|
||||||
background-color: #000000;
|
background-color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.size {
|
.size {
|
||||||
width: 33.33%;
|
width: 33.33%;
|
||||||
height: 25%;
|
height: 25%;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
.item-container {
|
||||||
font-family: Arial, sans-serif;
|
display: flex;
|
||||||
margin: 0;
|
justify-content: space-between;
|
||||||
padding: 0;
|
margin-top: 30px;
|
||||||
background-color: #ffffff;
|
|
||||||
text-align: center;
|
|
||||||
}
|
}
|
||||||
.container {
|
|
||||||
max-width: 600px;
|
.item {
|
||||||
margin: 50px auto;
|
flex: 0 0 48%;
|
||||||
background: white;
|
border: 1px solid #ddd;
|
||||||
padding: 20px;
|
|
||||||
border-radius: 10px;
|
|
||||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
||||||
input, textarea {
|
|
||||||
width: 100%;
|
|
||||||
padding: 10px;
|
|
||||||
margin: 10px 0;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
padding: 15px;
|
||||||
button {
|
|
||||||
background-color: #28a745;
|
|
||||||
color: white;
|
|
||||||
padding: 10px 15px;
|
|
||||||
border: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
button:hover {
|
|
||||||
background-color: #218838;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
background-color: #f8f9fa;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}v
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
||||||
.container {
|
|
||||||
max-width: 800px;
|
|
||||||
margin: 50px auto;
|
|
||||||
background: white;
|
|
||||||
padding: 20px;
|
|
||||||
border-radius: 10px;
|
|
||||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
||||||
opacity: 0.5;
|
|
||||||
background-color: rgba(255, 255, 255, 0.7);
|
|
||||||
}
|
|
||||||
h2 {
|
|
||||||
color: #28a745;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
text-align: left;
|
|
||||||
line-height: 1.6;
|
|
||||||
}
|
|
||||||
.team-member {
|
|
||||||
margin: 20px 0;
|
|
||||||
}
|
|
||||||
.team-member img {
|
|
||||||
border-radius: 50%;
|
|
||||||
width: 150px;
|
|
||||||
height: 150px;
|
|
||||||
}
|
|
||||||
.team-member h3 {
|
|
||||||
margin: 10px 0 5px;
|
|
||||||
}
|
|
||||||
.team-member p {
|
|
||||||
margin: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.achtergrond-video {
|
.item img {
|
||||||
position: absolute;
|
max-width: 100%;
|
||||||
top: 0;
|
height: auto;
|
||||||
left: 0;
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item h5 {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item p {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item button {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
}
|
||||||
object-fit: cover;
|
|
||||||
z-index: -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inhoud {
|
|
||||||
position: relative;
|
|
||||||
z-index: 1;
|
|
||||||
color: white;
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 20vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
54
vrijdag.html
Normal file
54
vrijdag.html
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Vrijdag - 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>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
54
zaterdag.html
Normal file
54
zaterdag.html
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Zaterdag - 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>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user