OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
NLEditor
/
newsletter
/
29
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
04/30/2025 06:15:46 AM
rwxr-xr-x
📄
index.php
1.16 KB
05/19/2025 10:07:22 AM
rw-r--r--
Editing: index.php
Close
<!DOCTYPE html> <html lang="en"> <head> <? header("Access-Control-Allow-Origin: *"); header("Access-Control-Allow-Methods: GET, POST, OPTIONS"); header("Access-Control-Allow-Headers: Content-Type, Authorization"); // If it's an OPTIONS request (preflight), stop execution here. if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') { http_response_code(200); exit(); } // Continue with the email processing script... ?> <meta charset="UTF-8"> <title>Short Post Example</title> </head> <body style="font-family: Arial, sans-serif; max-width: 600px; margin: 40px auto; padding: 20px; background-color: #f9f9f9; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1);"> <h2 style="color: #333;">Exploring the Beauty of Nature</h2> <img src="https://via.placeholder.com/600x300" alt="Nature scenery" style="width: 100%; border-radius: 8px;"> <p style="color: #555;"> Nature offers peace, inspiration, and awe with every glance. Whether it's a sunrise over the mountains or the quiet of a forest, spending time outdoors rejuvenates the mind and spirit. </p> </body> </html>