⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.49
Server IP:
147.79.120.209
Server:
Linux us-phx-web1443.main-hosting.eu 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
u530473652
/
domains
/
glemvnt.com
/
public_html
/
View File Name :
standardplan.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Appointment Booking Form</title> <link rel="stylesheet" href="styles.css"> <style> body { font-family: Arial, sans-serif; background-color: #f0f0f0; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .container { background-color: #fff; padding: 20px; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); width: 90%; max-width: 600px; margin: 20px; } h2 { text-align: center; color: #1e3799; /* Dark blue */ } form { display: flex; flex-direction: column; } label { margin-bottom: 5px; color: #1e3799; /* Dark blue */ } input[type="text"], input[type="email"], input[type="tel"], textarea { padding: 8px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 3px; } input[type="submit"] { background-color: #1e3799; /* Dark blue */ color: white; border: none; padding: 10px 20px; cursor: pointer; border-radius: 3px; } input[type="submit"]:hover { background-color: #0c2461; /* Darker blue */ } .note { text-align: center; margin-top: 10px; font-size: 14px; color: #666; } /* Popup styles */ .popup { display: none; position: fixed; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); z-index: 999; justify-content: center; align-items: center; } .popup-content { background-color: #fff; padding: 20px; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); text-align: center; max-width: 80%; } .close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; } @media screen and (max-width: 600px) { .container { width: 100%; margin: 10px; } } </style> </head> <body> <div class="container"> <h2>Book a Free 30-Minute Consultation</h2> <form id="appointmentForm" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" method="post"> <label for="name">Name:</label> <input type="text" id="name" name="name" required> <label for="email">Email:</label> <input type="email" id="email" name="email" required> <label for="phone">Phone:</label> <input type="tel" id="phone" name="phone" required> <label for="link">Link (optional):</label> <input type="text" id="link" name="link"> <label for="message">Additional Information:</label> <textarea id="message" name="message" rows="4"></textarea> <input type="submit" value="Book Appointment"> <p class="note">Note: For sessions longer than 30 minutes, a consultation fee of 20,000 Naira applies.</p> </form> </div> <div id="popup" class="popup"> <div class="popup-content"> <span class="close">×</span> <p>Thank you for booking your consultation with us! Get all your questions and inquiries organized for this is a 30-minute session. We look forward to assisting you.</p> <a href="https://echuku.click/payment1" class="button">Proceed to Payment Page</a> </div> </div> <script> // Popup functionality document.querySelector('.close').addEventListener('click', function() { document.getElementById('popup').style.display = 'none'; }); <?php if ($_SERVER["REQUEST_METHOD"] == "POST") { $name = $_POST['name']; $email = $_POST['email']; $phone = $_POST['phone']; $link = $_POST['link']; $message = $_POST['message']; // Email configuration $to = "admin@echuku.click, anzoloahope@gmail.com"; $subject = "Appointment Booking Confirmation"; $message_body = "Name: $name\n"; $message_body .= "Email: $email\n"; $message_body .= "Phone: $phone\n"; if (!empty($link)) { $message_body .= "Link: $link\n"; } $message_body .= "Message: $message\n"; $headers = "From: $email"; // Send email if (mail($to, $subject, $message_body, $headers)) { echo "document.getElementById('popup').style.display = 'flex';"; } else { echo "alert('Failed to book appointment. Please try again later.');"; } } ?> </script> </body> </html>