We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 104f5bb commit 316caeeCopy full SHA for 316caee
index.html
@@ -1333,6 +1333,24 @@ <h3 style="font-size:1.05rem;color:#1e293b;margin:0 0 0.5rem 0;">${error.message
1333
}
1334
});
1335
</script>
1336
+
1337
1338
+<script>
1339
+ const correctPassword = "password"; // change this
1340
1341
+ function askPassword() {
1342
+ const input = prompt("Enter password:");
1343
1344
+ if (input === correctPassword) {
1345
+ return; // allow page to load
1346
+ } else {
1347
+ alert("Incorrect password ❌ Please re-enter.");
1348
+ setTimeout(askPassword, 0); // ask again without blocking
1349
+ }
1350
1351
1352
+ askPassword();
1353
+</script>
1354
1355
1356
0 commit comments