OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
back_whatsappBot
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/17/2025 10:17:24 AM
rwxrwxr-x
📄
db.php
368 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
demoForm.html
1.99 KB
04/10/2025 08:12:36 AM
rw-r--r--
📄
news_pagination.json
35 bytes
04/10/2025 05:40:59 AM
rwxrwxrwx
📄
posts_pagination.json
52 bytes
04/10/2025 05:44:17 AM
rwxrwxrwx
📄
saveDemo.php
1.82 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
send_log.txt
68.41 KB
04/10/2025 05:52:23 AM
rwxrwxrwx
📄
webhook_post_log.txt
272.88 KB
04/09/2025 09:25:07 AM
rwxrwxrwx
📄
whatsappAPI.php
22 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
whatsapp_messages.log
9.53 KB
04/10/2025 05:52:22 AM
rw-rw-rw-
Editing: 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="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>