OwlCyberSecurity - MANAGER
Edit File: no-index.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>Under Maintenance</title> <!-- Bootstrap 5 CDN --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" /> <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet"/> <!-- Custom Styles --> <style> body { margin: 0; padding: 0; background: linear-gradient(to right, #141e30, #243b55); font-family: 'Roboto', sans-serif; color: #fff; height: 100vh; display: flex; align-items: center; justify-content: center; } .maintenance-card { background: rgba(255, 255, 255, 0.05); border-radius: 20px; padding: 40px; text-align: center; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); backdrop-filter: blur(12px); max-width: 500px; width: 100%; } .logo { max-width: 120px; margin-bottom: 20px; } .gear-icon { font-size: 60px; animation: spin 4s linear infinite; color: #ffc107; margin-bottom: 20px; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } h1 { font-weight: 700; font-size: 2rem; margin-bottom: 10px; } p { font-size: 1.1rem; margin-bottom: 30px; } .btn-custom { background-color: #ffc107; color: #000; font-weight: 600; padding: 10px 25px; border-radius: 30px; transition: 0.3s ease-in-out; } .btn-custom:hover { background-color: #e0a800; color: #000; } </style> </head> <body> <div class="maintenance-card text-center"> <!-- Replace with your logo --> <img src="https://usostwalenglishacademy.co.in/images/US200-removebg-preview.png"/> <div class="gear-icon">⚙️</div> <h1>Under Maintenance</h1> <p>We're working hard to improve our website and will be back online shortly.</p> <a href="/" class="btn btn-custom">Back to Home</a> </div> </body> </html>