如何创建一个需要密码才可以打开得.html [复制链接]

帖子链接已复制到剪贴板
星光 (UID: 1544) 守护神 2023-7-1
帖子已经有人评论啦,不支持删除!

1936 29

下面这段代码是用AI生成得,但有个bug,就是人家右键查看源代码就可以看到密码了

有啥办法可以创建密码,但无法通过查看源代码找到,不需要后台

只是想输入密码后可以看到iframe代码模块

ps:上次在论坛看到有个大佬得 AI页面 就是输入密码才可以打开得

  <!DOCTYPE html>
  <html>
  <head>
  <title>Protected Page</title>
  <style>
  body {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  }
   
  input {
  margin-bottom: 10px;
  }
   
  #iframeContainer {
  display: none;
  width: 80%;
  }
   
  #iframeContainer iframe {
  width: 100%;
  height: 80vh;
  }
  </style>
  </head>
  <body>
  <div id="passwordForm">
  <input type="password" id="passwordInput" placeholder="Enter password" />
  <button type="button" onclick="checkPassword()">Submit</button>
  </div>
   
  <div id="iframeContainer">
  ///这里放iframe代码
  </div>
   
  <script>
  function checkPassword() {
  var password = document.getElementById("passwordInput").value;
  if (password === "abc") {
  document.getElementById("passwordForm").style.display = "none";
  document.getElementById("iframeContainer").style.display = "block";
  }
  }
  </script>
  </body>
  </html>
   
net.srl 米表 单字符明牌出米
已有评论 (29)
提示:您必须 登录 才能查看此内容。
创建新帖
广告推广点击空位自助购买