OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
3-31-025chanakya
/
interface
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/31/2025 06:36:42 AM
rwxr-xr-x
📄
back_upload.php
5.13 KB
03/26/2025 03:48:05 AM
rw-r--r--
📄
index.html
2.29 KB
03/26/2025 03:48:05 AM
rw-r--r--
📄
index.php
1.47 KB
03/26/2025 03:48:05 AM
rw-r--r--
📄
upload.php
9.28 KB
03/26/2025 03:48:05 AM
rw-r--r--
Editing: index.html
Close
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Insert Template Data</title> <style> body { font-family: Arial, sans-serif; margin: 20px; padding: 20px; background-color: #f4f4f4; } form { background: white; padding: 20px; border-radius: 5px; box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); max-width: 400px; margin: auto; } label { font-weight: bold; } select, input { width: 100%; padding: 8px; margin: 5px 0 15px; border: 1px solid #ccc; border-radius: 4px; } button { background: #db5919; color: white; padding: 10px; border: none; cursor: pointer; width: 100%; border-radius: 4px; } button:hover { background: #db5919; } </style> </head> <body> <h2 style="text-align: center;">Insert Template Data</h2> <form action="index.php" method="POST"> <label for="category">Category:</label> <select id="category" name="category" required> <option value="" disabled selected>Select Category</option> <option value="basic_newsletter">basic_newsletter</option> <option value="modern_layout">modern_layout</option> <option value="professional">professional</option> <option value="minimal_desing">minimal_desing</option> <option value="creative_style">creative_style</option> </select> <label for="template_name">Template Name:</label> <input type="text" id="template_name" name="template_name" required> <label for="image_path">Image Path:</label> <input type="text" id="image_path" name="image_path"> <label for="template_path">Template Path:</label> <input type="text" id="template_path" name="template_path"> <button type="submit">Insert Data</button> </form> </body> </html>