OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
whatsappBot
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/17/2025 10:17:24 AM
rwxrwxr-x
📄
bac_demoForm.html
2.64 KB
04/14/2025 05:32:03 PM
rw-r--r--
📄
creamNowForm.php
7.94 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
db.php
368 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
demoForm.html
8.42 KB
04/14/2025 05:32:03 PM
rw-r--r--
📄
news_pagination.json
225 bytes
05/27/2025 05:06:08 AM
rwxrwxrwx
📄
posts_pagination.json
191 bytes
06/02/2025 02:56:58 AM
rwxrwxrwx
📄
saveDemo.php
2.55 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
send_log.txt
139.58 KB
06/16/2025 02:40:24 PM
rwxrwxrwx
📄
service-account-credentials.json
2.34 KB
04/14/2025 05:32:03 PM
rw-r--r--
📄
webhook_post_log.txt
272.88 KB
04/14/2025 05:32:03 PM
rw-rw-rw-
📄
whatsappAPI.php
34.49 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
whatsapp_messages.log
27.18 KB
06/16/2025 02:40:22 PM
rwxrwxrwx
Editing: bac_demoForm.html
Close
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Event Form</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css"> <style> body { font-family: 'Arial', sans-serif; background: linear-gradient(to right, #ece9e6, #ffffff); margin: 0; padding: 20px; } .form-container { max-width: 600px; margin: 0 auto; background-color: white; padding: 25px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } h2 { text-align: center; margin-bottom: 20px; color: #333; } .form-label { font-weight: bold; } .btn-success { width: 100%; padding: 10px; font-weight: bold; margin-top: 10px; } </style> </head> <body> <div class="form-container"> <h2>Book Your Demo</h2> <form id="tourForm" method="POST" action="saveDemo.php"> <div class="mb-3"> <label for="fullname" class="form-label">Full Name</label> <input type="text" class="form-control" id="fullname" name="fullname" required> </div> <div class="mb-3"> <label for="email" class="form-label">Email</label> <input type="email" class="form-control" id="email" name="email" required> </div> <div class="mb-3"> <label for="mobile" class="form-label">Mobile Number</label> <input type="tel" class="form-control" id="mobile" name="mobile" required> </div> <div class="mb-3"> <label for="date" class="form-label">Date</label> <input type="date" class="form-control" id="date" name="date" required> </div> <div class="mb-3"> <label for="time" class="form-label">Time</label> <input type="time" class="form-control" id="time" name="time" required> </div> <div class="mb-3"> <label for="description" class="form-label">Description</label> <input type="text" class="form-control" id="description" name="description" required> </div> <button type="submit" class="btn btn-success">Submit</button> </form> </div> </body> </html>