mirror of
https://github.com/Alvin-Zilverstand/Schoolkantine.git
synced 2026-03-06 02:57:30 +01:00
28 lines
801 B
HTML
28 lines
801 B
HTML
<!DOCTYPE html>
|
|
<html lang="nl">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Betaalpagina Mees</title>
|
|
<link rel="icon" href="media/favicon.ico" type="image/x-icon">
|
|
<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 id="random-number"></h1>
|
|
</body>
|
|
|
|
<script src="script.js"></script>
|
|
</html>
|
|
|