48 lines
1.4 KiB
HTML
48 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Юнона</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
|
background: #0F0F1A;
|
|
color: white;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding: 40px;
|
|
}
|
|
.logo { font-size: 64px; margin-bottom: 24px; }
|
|
h1 { font-size: 28px; margin-bottom: 8px; }
|
|
p { color: rgba(255,255,255,0.6); margin-bottom: 24px; }
|
|
.spinner {
|
|
width: 40px;
|
|
height: 40px;
|
|
border: 3px solid rgba(255,255,255,0.1);
|
|
border-top-color: #4A90D9;
|
|
border-radius: 50%;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
@keyframes spin { to { transform: rotate(360deg); } }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="logo">Ɉ</div>
|
|
<h1>Юнона</h1>
|
|
<p>Подключение...</p>
|
|
<div class="spinner"></div>
|
|
<script>
|
|
// Перенаправляем на сервер
|
|
setTimeout(() => {
|
|
window.location.href = 'http://72.56.102.240';
|
|
}, 1000);
|
|
</script>
|
|
</body>
|
|
</html>
|