⚝
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 :
eventsreg.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Unlocking AI for Business Webinar</title> <style> body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 0; color: #333; } .container { max-width: 800px; margin: 0 auto; padding: 20px; background-color: white; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); } h1 { color: #0044cc; text-align: center; } .section { margin-bottom: 20px; } .form-container { background-color: #f9f9f9; padding: 20px; border-radius: 8px; } input[type="text"], input[type="email"], input[type="tel"] { width: 100%; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-radius: 4px; } button { padding: 10px 20px; background-color: #0044cc; color: white; border: none; border-radius: 4px; cursor: pointer; } button:hover { background-color: #003399; } .guest-speaker img { max-width: 100px; border-radius: 50%; } .success-message { padding: 15px; background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; margin-bottom: 20px; } .error-message { padding: 15px; background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; margin-bottom: 20px; } .webinar-button { display: inline-block; padding: 10px 15px; background-color: #0044cc; color: white; text-decoration: none; border-radius: 4px; margin-top: 20px; } .webinar-button:hover { background-color: #003399; } </style> </head> <body> <div class="container"> <h1>Unlocking AI for Business: Master AI Prompt Engineering for Success</h1> <div class="section"> <h2>About the Webinar</h2> <p>Join us for an exclusive live webinar designed to empower business professionals with essential skills in AI prompt engineering. Learn how to leverage AI to optimize productivity, automate tasks, and drive business growth.</p> </div> <div class="section guest-speaker"> <h2>Guest Speaker</h2> <img src="guest-speaker.jpg" alt="Guest Speaker"> <p><strong>John Doe</strong><br>AI Expert and Business Consultant</p> <p>John Doe has over 10 years of experience helping businesses implement AI solutions that drive productivity and profitability. He will be sharing valuable insights during the webinar.</p> </div> <div class="section"> <h2>Benefits of Attending</h2> <ul> <li>Learn the fundamentals of AI prompt engineering.</li> <li>Discover how to communicate effectively with AI tools.</li> <li>Understand the potential of AI for optimizing business processes.</li> <li>Get hands-on techniques to drive growth with AI-driven solutions.</li> </ul> </div> <?php if ($_SERVER["REQUEST_METHOD"] == "POST") { $username = htmlspecialchars($_POST['username']); $email = htmlspecialchars($_POST['email']); $phone = htmlspecialchars($_POST['phone']); $to = "hello@echuku.click"; $subject = "Webinar Registration: AI for Business"; $message = "Name: $username\nEmail: $email\nPhone: $phone"; $headers = "From: noreply@yourwebsite.com"; if (mail($to, $subject, $message, $headers)) { // Send email to the user $user_subject = "Webinar Details: Unlocking AI for Business"; $user_message = "Dear $username,\n\nThank you for registering for the webinar.\n\nWebinar Details:\nDate: [Webinar Date]\nTime: [Webinar Time]\nLink: https://webinar.url\n\nGuidelines: Please make sure to have a stable internet connection during the event."; mail($email, $user_subject, $user_message, $headers); echo '<div class="success-message">Thank you for registering! An email with the webinar details has been sent to you.</div>'; echo '<a href="https://webinar.url" class="webinar-button">Join the Webinar</a>'; } else { echo '<div class="error-message">There was an issue with your submission. Please try again.</div>'; } } ?> <div class="section form-container"> <h2>Register for the Webinar</h2> <form id="webinarForm" method="post"> <input type="text" name="username" placeholder="Enter your name" required> <input type="email" name="email" placeholder="Enter your email" required> <input type="tel" name="phone" placeholder="Enter your phone number" required> <button type="submit">Submit</button> </form> </div> </div> </body> </html>