-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
29 lines (29 loc) · 967 Bytes
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<title>Thundergrid VPN Check</title>
</head>
<body>
<p hidden>subduing-until-stung</p>
<h1>connect to OpenVPN to access Netbox</h1>
<marquee>Checking connection...</marquee>
<script>
setInterval(() => {
fetch(`${window.location.href}?_=${Math.random()}`)
.then(res => res.text())
.then(txt => {
if(!txt.includes("subduing-until-stung")) {
window.location.reload();
}
})
.catch(err => console.error('Error:', err));
}, 3000);
</script>
</body>
</html>