:: **Zploit** v1.0 | Current Path: **/home/kreativepixelz/www/kreative_crm/quatation/**
:: Editing File: index.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Brejeel Farm</title> <link rel="icon" href="assets/images/logo/favicon.png" type="image/x-icon"> <!-- Font Awesome --> <link rel="stylesheet" href="assets/vendor/fontawesome/css/all.css"> <!-- Google Fonts --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300..900&display=swap" rel="stylesheet"> <!-- Tabler Icons --> <link rel="stylesheet" href="assets/vendor/tabler-icons/tabler-icons.css"> <!-- Bootstrap --> <link rel="stylesheet" href="assets/vendor/bootstrap/bootstrap.min.css"> <!-- App CSS --> <link rel="stylesheet" href="assets/css/style.css"> <link rel="stylesheet" href="assets/css/responsive.css"> <!-- POPUP CSS --> <style> body { font-family: Arial, sans-serif; } #popup { position: fixed; inset: 0; background: rgba(0,0,0,.7); display: none; align-items: center; justify-content: center; z-index: 99999; } #popup.show { display: flex; } .popup-box { background: #fff; padding: 10px; border-radius: 10px; width: 90%; max-width: 450px; position: relative; } .popup-box img { width: 100%; border-radius: 8px; } .popup-close { position: absolute; top: -12px; right: -12px; background: #dc3545; color: #fff; border: none; border-radius: 50%; width: 30px; height: 30px; cursor: pointer; font-size: 18px; } </style> </head> <body> <!-- POPUP --> <div id="popup"> <div class="popup-box"> <button class="popup-close" id="closePopup">×</button> <img src="popup.png" alt="Popup"> </div> </div> <!-- PAGE CONTENT --> <div style=""> <div class="app-wrapper d-block"> <main class="w-100 p-0"> <div class="container-fluid"> <div class="row"> <div class="col-12 p-0"> <div class="login-form-container"> <div class="mb-4"> <a class="logo" href="index.php" style="background:#151529"> <img src="assets/images/logo/favicon.png" style="width:80px;"> </a> </div> <div class="form_container"> <form class="app-form" action="login.php" method="post"> <div class="mb-3 text-center"> <h3 style="color:#b6a271;">Barjeel Group</h3> <p class="f-s-12 text-secondary"> With a passion for quality and a commitment to excellence. </p> </div> <div class="mb-3"> <label class="form-label">Username</label> <input class="form-control" type="text" name="username" required> </div> <div class="mb-3"> <label class="form-label">Password</label> <input class="form-control" type="password" name="password" required> </div> <br> <button type="submit" class="btn btn-primary w-100">Login</button> <p class="copyright-text text-center mt-4"> Copyright © <?php echo date('Y');?> <b>Barjeel Group</b><br> Designed by <a href="https://kreativepixelz.com/">Kreative Pixelz</a> </p> </form> </div> </div> </div> </div> </div> </main> </div> </div> <!-- ✅ NEW TECHNIQUE SCRIPT --> <script> (function () { // 🔁 Reset for testing (REMOVE in production) localStorage.removeItem('popup_shown'); var observer = new MutationObserver(function () { var popup = document.getElementById('popup'); var closeBtn = document.getElementById('closePopup'); if (!popup) return; observer.disconnect(); // stop observing once found if (!localStorage.getItem('popup_shown')) { setTimeout(function () { popup.classList.add('show'); localStorage.setItem('popup_shown', 'yes'); }, 1000); // ✅ 1 SECOND } if (closeBtn) { closeBtn.onclick = function () { popup.classList.remove('show'); }; } }); observer.observe(document.documentElement, { childList: true, subtree: true }); })(); </script> </body> </html>