Update index.html
This commit is contained in:
parent
89ef95205b
commit
0b5c86c6d2
12
index.html
12
index.html
|
@ -2,8 +2,17 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Wifi Password</title>
|
<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>
|
</head>
|
||||||
<body>
|
<body oncontextmenu="return false;">
|
||||||
<h1>Wifi Password</h1>
|
<h1>Wifi Password</h1>
|
||||||
<p>Password: <span id="randomNumber"></span></p>
|
<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');
|
||||||
window.open('https://linod.eu.org/', '_blank');
|
window.open('https://linod.eu.org/', '_blank');
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue