File Manager
Editing: maintenance.php
<?php header("HTTP/1.1 503 Service Unavailable"); header("Retry-After: 3600"); // Retry after 1 hour ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>EIZON is being updated</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Arial', sans-serif; background-color: #f4f4f4; color: #333; display: flex; justify-content: center; align-items: center; height: 100vh; padding: 20px; } .container { background-color: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); text-align: center; max-width: 600px; width: 100%; } .logo { max-width: 120px; margin-bottom: 20px; } h1 { font-size: 2rem; color: #008000; /* EIZON green */ margin-bottom: 10px; } p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 20px; } .footer { font-size: 0.9rem; color: #777; } @media (max-width: 768px) { h1 { font-size: 1.8rem; } p { font-size: 1rem; } .container { padding: 30px; } } @media (max-width: 480px) { h1 { font-size: 1.5rem; } p { font-size: 0.9rem; } .container { padding: 20px; } } </style> </head> <body> <div class="container"> <h1>e!zon</h1> <h1>eizon is being updated</h1> <p>We’re making improvements to provide a better experience.</p> <p>Please check back soon. Thank you for your patience!</p> <p class="footer">© <?php echo date('Y'); ?> eizon. All rights reserved.</p> </div> </body> </html>
💾 Save
⬅ Back