Файловый менеджер - Редактировать - /home/gqdcvggs/hizhat.com/imators.uk.tar
Назад
index.html 0000664 00000003375 15114716327 0006562 0 ustar 00 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Welcome - Imators</title> <meta name="imators-verification" content="verified"> <link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet"> <style> .fade-in { animation: fadeIn 1s ease-in; } @keyframes fadeIn { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } } </style> </head> <body class="bg-black min-h-screen flex flex-col items-center justify-center"> <!-- Logo --> <img src="https://cdn.imators.com/logo.png" alt="Logo" class="w-16 h-16 mb-8 fade-in"> <!-- Welcome Message --> <h1 class="text-4xl md:text-6xl font-bold mb-4 text-white font-['Poppins'] text-center px-4 fade-in"> Welcome to Imators </h1> <!-- Redirect Message --> <p id="countdown" class="text-lg text-gray-300 font-['Poppins'] text-center fade-in"> Redirecting in 3 seconds... </p> <script> // Redirect countdown let secondsLeft = 3; const countdownElement = document.getElementById('countdown'); const countdown = setInterval(() => { secondsLeft--; if (secondsLeft > 0) { countdownElement.textContent = `Redirecting in ${secondsLeft} seconds...`; } else { clearInterval(countdown); window.location.href = 'https://imators.com/'; } }, 1000); </script> </body> </html>