Update index.html

This commit is contained in:
Adil Sadqi 2023-09-27 01:30:07 +01:00 committed by GitHub
parent 89ef95205b
commit 0b5c86c6d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -2,8 +2,17 @@
<html>
<head>
<title>Wifi Password</title>
<style>
/* Disable text selection */
body {
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
</style>
</head>
<body>
<body oncontextmenu="return false;">
<h1>Wifi Password</h1>
<p>Password: <span id="randomNumber"></span></p>
@ -34,6 +43,7 @@
window.open('https://linod.eu.org/', '_blank');
window.open('https://linod.eu.org/', '_blank');
};
</script>
</body>