blob: d62c62f361ddf23b2c3671de5c8178b4ab7dbdf1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>LARS</title>
</head>
<body>
Redirecting to <a href=""><span id="where"></span></a>, please wait 3s...
<script charset="utf-8">
const choices = ["cool", "uncool"];
const choice = choices[Math.floor(Math.random() * choices.length)];
where.innerText = choice;
setTimeout(function () {
window.location.replace(`${choice}/`);
}, 3000);
</script>
</body>
</html>
|