mirror of
https://github.com/Alvin-Zilverstand/Schoolkantine.git
synced 2026-03-06 13:26:27 +01:00
Merge branch 'main' of https://github.com/Alvin-Zilverstand/Schoolkantine
This commit is contained in:
@@ -9,11 +9,20 @@
|
||||
<link rel="stylesheet" href="betaal.css">
|
||||
</head>
|
||||
|
||||
<script>
|
||||
window.onload = function() {
|
||||
var number = Math.floor((Math.random() * 999) + 1);
|
||||
document.getElementById("random-number").innerHTML = "Uw Bestellings nummer = #" + number;
|
||||
}
|
||||
</script>
|
||||
|
||||
<body>
|
||||
<h1>Bedankt voor uw bestelling!</h1>
|
||||
<p>Uw bestelling is succesvol geplaatst. U kunt dit tabblad nu sluiten.</p>
|
||||
<button onclick="window.close()">Sluit dit tabblad</button>
|
||||
<h1>Uw Bestellings nummer=</h1>
|
||||
<h1 id="random-number"></h1>
|
||||
</body>
|
||||
|
||||
<script src="script.js"></script>
|
||||
</html>
|
||||
|
||||
BIN
website/media/Redbull.png
Normal file
BIN
website/media/Redbull.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 39 KiB |
BIN
website/media/Spring.png
Normal file
BIN
website/media/Spring.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 812 KiB |
BIN
website/media/barbecue.png
Normal file
BIN
website/media/barbecue.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 MiB |
@@ -15,7 +15,7 @@ function showCategory(category) {
|
||||
{ title: "Saucijzenbroodje", imageSrc: "media/Saucijz.png", price: 1.20 },
|
||||
{ title: "Croissant", imageSrc: "https://th.bing.com/th/id/OIP._NRJfKZ0twQKDaljLKfvLAHaEt?rs=1&pid=ImgDetMain", price: 1.20 },
|
||||
{ title: "Chocolade broodje", imageSrc: "https://www.bakkerijtommie.nl/wp-content/uploads/2020/02/chocoladebroodje-600x599.png", price: 1.20 },
|
||||
{ title: "Broodje kip", imageSrc: "https://th.bing.com/th/id/OIP.sVGmYdUWj25TkUaJR2FCUwHaHa?rs=1&pid=ImgDetMain", price: 1.20 },
|
||||
{ title: "Broodje kip", imageSrc: "https://th.bing.com/th/id/OIP.sVGmYdUWj25TkUaJR2FCUwHaHa?rs=1&pid=ImgDetMain", price: 3.20 },
|
||||
{ title: "Panini broodje", imageSrc: "https://th.bing.com/th/id/OIP.aTQpC7sGUdi1HntM7OP6nwAAAA?w=350&h=517&rs=1&pid=ImgDetMain", price: 1.20 },
|
||||
];
|
||||
} else if (category === 'Koude-Dranken') {
|
||||
@@ -34,8 +34,11 @@ function showCategory(category) {
|
||||
{ title: "Fanta lemon zero", imageSrc: "media/fanta-lemon-zero.jpg", price: 1.80 },
|
||||
{ title: "Ice tea", imageSrc: "https://www.manutan.nl/img/S/GRP/ST/AIG12165970.jpg", price: 1.80},
|
||||
{ title: "Fanta cassis", imageSrc: "media/fanta-cassis.jpg", price: 1.80 },
|
||||
{ title: "Milkshake", imageSrc: "https://s3.amazonaws.com/static.realcaliforniamilk.com/media/recipes_2/sunset-sprinkle-shakes.jpg", price: 3.00 }, ]
|
||||
} else if (category === 'Warme-Dranken') {
|
||||
{ title: "Milkshake", imageSrc: "https://s3.amazonaws.com/static.realcaliforniamilk.com/media/recipes_2/sunset-sprinkle-shakes.jpg", price: 3.00 },
|
||||
{ title: "Redbull", imageSrc: "media/redbull.png", price: 2.10 },
|
||||
{ title: "Lente Redbull", imageSrc: "media/spring.png", price: 2.10 },
|
||||
]
|
||||
} else if (category === 'Warme-Dranken') {
|
||||
items = [
|
||||
{ title: "Warme Chocomel", imageSrc: "media/choco-gs.jpg", price: 2.30 },
|
||||
{ title: "Warme Chocomel met slagroom", imageSrc: "media/chocomel.jpg", price: 3.00 },
|
||||
@@ -86,7 +89,8 @@ function showCategory(category) {
|
||||
{ title: "Mayonaise", imageSrc: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTC4FVmHO_hK3mw43z0fuHv1OFUr-hhsfGe1A&s", price: 0.75 },
|
||||
{ title: "Mosterd", imageSrc: "https://cdn.voedingswaardetabel.nl/img/prod/big/mosterd.jpg", price: 0.75 },
|
||||
{ title: "Sweet Chili", imageSrc: "https://www.dechinesemuuregmond.nl/wp-content/uploads/2022/04/19.-Zoetzure-saus.jpg", price: 0.75 },
|
||||
{title: "Curry saus", imageSrc: "https://bestellen.hotelhetanker.nl/wp-content/uploads/2021/03/currysaus-1.png", price: 0.75}
|
||||
{title: "Curry saus", imageSrc: "https://bestellen.hotelhetanker.nl/wp-content/uploads/2021/03/currysaus-1.png", price: 0.75},
|
||||
{title: "Barbecue saus", imageSrc: "Media/barbecue.png", price: 0.75}
|
||||
];
|
||||
|
||||
|
||||
@@ -199,6 +203,10 @@ function getDescription(title) {
|
||||
return "Koude verfrissende water.";
|
||||
} else if (title === "Milkshake") {
|
||||
return "Verschillende diverse milkshake (keuze bij de counter maken)";
|
||||
} else if (title === "Lente Redbull") {
|
||||
return "De Red Bull Spring Edition Walstro & Pink Grapefruit";
|
||||
} else if (title === "Redbull") {
|
||||
return "De orginele Redbull";
|
||||
|
||||
|
||||
// Warme dranken beschrijving
|
||||
|
||||
Reference in New Issue
Block a user