-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your a Twat</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="container">
<h1>Your a Twat.lol</h1>
<p>
This domain is for a joke. Subdomains are made with peoples names, basically calling them a twat. <br />
<ul>
<li><a href="https://sudo-flix.lol">Sudo-Flix</a></li>
<li><a href="https://movie-web.github.io/links/discord">Movie-Web Discord</a></li>
</ul>
</p>
<div style="display: flex; justify-content: center;">
<button onclick="generateString()">Generate JWT Secret</button>
</div>
<div style="display: flex; justify-content: center;">
<p id="randomString"></p>
</div>
</div>
<script>
function generateString() {
const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
let result = '';
const charactersLength = characters.length;
for (let i = 0; i < 32; i++) {
result += characters.charAt(Math.floor(Math.random() * charactersLength));
}
result = result.split('').sort(() => Math.random() - 0.5).join('');
document.getElementById('randomString').innerText = result;
}
</script>
</body>
</html>