fantastic-garbanzo/Mmem.HTML
2023-08-24 08:52:13 +02:00

38 lines
1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Please, enter your password</title>
</head>
<body>
<div id="content" style="display: none;">
<!-- Your protected content goes here -->
<h1>Haha, get memed!</h1>
<video controls>
<source src="vazduh_punch.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div id="passwordDiv">
<label for="password">Enter Password: </label>
<input type="password" id="password">
<button onclick="checkPassword()">Submit</button>
</div>
<script>
function checkPassword() {
var password = document.getElementById("password").value;
var contentDiv = document.getElementById("content");
var passwordDiv = document.getElementById("passwordDiv");
if (password === "BobexSimulator") {
contentDiv.style.display = "block";
passwordDiv.style.display = "none";
} else {
alert("Incorrect password. Please try again.");
}
}
</script>
</body>
</html>