Add files via upload

This commit is contained in:
Dangrainage 2023-08-24 08:52:13 +02:00 committed by GitHub
parent 5fb31b47d0
commit 2760399f1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

38
Mmem.HTML Normal file
View file

@ -0,0 +1,38 @@
<!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>

BIN
vazduh_punch.mp4 Normal file

Binary file not shown.