<!DOCTYPE html>
<html>
<head>
  <link rel="icon" href="Dangrain.ico" type="image/x-icon">
  <title>Please, enter your password</title>
</head>
<body>
  <div id="content" style="display: none;">
    
    <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 === "123") {
        contentDiv.style.display = "block";
        passwordDiv.style.display = "none";
      } else {
        alert("Incorrect password. Please try again.");
      }
    }
  </script>
</body>
</html>