Spaces:
Running
Running
| <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> | |