Spaces:
Running
Running
File size: 1,507 Bytes
794cf6c |
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Authentication - VibeGame</title>
<style>
body {
margin: 0;
padding: 0;
background: linear-gradient(135deg, #0b0a09 0%, #0f0e0c 100%);
color: #ffffff;
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui,
sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
padding: 2rem;
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid rgba(255, 255, 255, 0.1);
border-top-color: #667eea;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto 1rem;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
h1 {
font-size: 1.5rem;
font-weight: 500;
margin: 0 0 0.5rem;
}
p {
color: rgba(255, 255, 255, 0.6);
margin: 0;
}
</style>
</head>
<body>
<div class="container">
<div class="spinner"></div>
<h1>Authenticating...</h1>
<p>Please wait while we complete your login.</p>
</div>
<script>
setTimeout(() => {
window.location.href = "/";
}, 5000);
</script>
</body>
</html>
|