
<!DOCTYPE html>
<html lang="bn">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Omni Web Admin Panel (Shared Hosting Backend)</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css">
    <style>
        body { background-color: #f8fafc; font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; }
        .sidebar { min-height: 100vh; background: #0f172a; color: white; }
        .card { border-radius: 12px; border: none; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
        .nav-link { color: #94a3b8; border-radius: 8px; font-weight: 500; }
        .nav-link:hover, .nav-link.active { background: #1e293b; color: #38bdf8 !important; }
    </style>
</head>
<body>

<!-- LOGIN SCREEN -->
<div class="container d-flex justify-content-center align-items-center" style="min-height: 100vh;">
    <div class="card p-4 shadow-lg" style="width: 400px; border-radius: 16px;">
        <div class="text-center mb-4">
            <i class="bi bi-shield-lock-fill text-primary display-4"></i>
            <h4 class="fw-bold mt-2">Shared Hosting Admin Login</h4>
            <p class="text-muted small">cPanel / MySQL Backend Control</p>
        </div>
                <form method="POST">
            <div class="mb-3">
                <label class="form-label fw-semibold">এডমিন ইমেইল</label>
                <input type="email" name="email" class="form-control" placeholder="admin@omnitools.com" required>
            </div>
            <div class="mb-3">
                <label class="form-label fw-semibold">পাসওয়ার্ড</label>
                <input type="password" name="password" class="form-control" placeholder="••••••••" required>
            </div>
            <button type="submit" name="admin_login" class="btn btn-primary w-100 fw-bold">লগইন করুন</button>
        </form>
    </div>
</div>


</body>
</html>
