34 lines
921 B
HTML
34 lines
921 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>hangar.in</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
body {
|
|
background: #1a1a1a;
|
|
font-family: monospace;
|
|
color: #fefefe;
|
|
}
|
|
h1 {
|
|
font-size: large;
|
|
}
|
|
.container {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: min(50ch, 95vw);
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>
|
|
Welcome to the hangar! Your connection does not come from inside our network.
|
|
Please turn on the VPN, or hop on the next train to Prague :)
|
|
</h1>
|
|
<p>~ Admins, with ❤️</p>
|
|
</div>
|
|
</body>
|
|
</html>
|