-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (35 loc) · 909 Bytes
/
index.html
File metadata and controls
37 lines (35 loc) · 909 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>VPN Infrastructure Intelligence Lab</title>
<meta http-equiv="refresh" content="0; url=dashboard/">
<link rel="canonical" href="dashboard/">
<style>
:root {
color-scheme: dark;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #0a0d13;
color: #eaedf4;
}
body {
min-height: 100vh;
margin: 0;
display: grid;
place-items: center;
}
a {
color: #5cc7d8;
}
</style>
</head>
<body>
<main>
<p>Opening <a href="dashboard/">VPN Infrastructure Intelligence Lab dashboard</a>.</p>
</main>
<script>
window.location.replace("dashboard/");
</script>
</body>
</html>