Add files via upload
This commit is contained in:
parent
5fb31b47d0
commit
2760399f1d
2 changed files with 38 additions and 0 deletions
38
Mmem.HTML
Normal file
38
Mmem.HTML
Normal 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
BIN
vazduh_punch.mp4
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue