-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage5.html
More file actions
executable file
·46 lines (44 loc) · 2.32 KB
/
page5.html
File metadata and controls
executable file
·46 lines (44 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ogród</title>
<link rel="stylesheet" href="styles1.css">
</head>
<body>
<h1>Niespodzianka</h1>
To teraz gdy już wszystko mamy<br>
Możemy jechać w miejsce docelowe<br>
Jedziemy do...🥁🥁🥁 <b>
<u style="color:#FF0000">o</u><u style="color:#FF5A00">g</u><u style="color:#FFB400">r</u><u style="color:#F0FF00">o</u><u style="color:#96FF00">d</u><u style="color:#3CFF00">u</u> <u style="color:#00FF1E">j</u><u style="color:#00FF78">a</u><u style="color:#00FFD2">p</u><u style="color:#00D2FF">o</u><u style="color:#0078FF">ń</u><u style="color:#001EFF">s</u><u style="color:#3C00FF">k</u><u style="color:#9600FF">i</u><u style="color:#F000FF">e</u><u style="color:#FF00B4">g</u><u style="color:#FF005A">o</u></b><br>
Mam nadzieje, że będzie ci się podobało<br>
Troszkę się Ken wygadał, niestety nie chciał iść z nami<br>
Szczerze to nie mam pojęcia o co chodziło z tym dniem bajek<br>
Miało być na sportowo, zeby było ci wygodnie<br>
Dlatego nie wiedziałem co ci powiedzieć jak pytałaś co masz ubrać<br>
Teraz wsiadamy w tramwaj/autobus i jedziemy 🙂
<script>
function checkPassword(message, url) {
document.getElementById("password").style.display = null;
document.getElementById("b").innerHTML = "Dalej...";
const input = document.getElementById("password").value.toLowerCase().trimEnd();
const correctPassword = "park trampolin"; // Replace with the actual password
if (input === correctPassword) {
location.href = url;
} else {
alert(message);
}
}
</script>
<div class="navigation">
<div class="password-section">
<input type="text" id="password"
style="display: none; border-radius: 10px; border: 2px solid pink; padding: 8px; background-color: #2c2c2c; color: white;"
placeholder="Co tu wpisać... 🤔">
<button class="button" id="b"
onclick="checkPassword('Jesteś zła? 🤪😏\nTo nie patrz w telefon tylko na tego pana 😏','page6.html')">aha?!?!</button>
</div>
</div>
</body>
</html>