home
/
aioutajg
/
nerdemoji.xyz
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] assets
N/A
[DIR] includes
N/A
[DIR] uploads
N/A
.htaccess
350 bytes
Rename
Delete
Backup.zip
27.32 MB
Rename
Delete
Image converter, resizer and compressor tool script.zip
137.55 KB
Rename
Delete
about-us.php
1.81 KB
Rename
Delete
ads.txt
58 bytes
Rename
Delete
contact-us.php
1.07 KB
Rename
Delete
cookies.php
2.99 KB
Rename
Delete
disclaimer.php
2.13 KB
Rename
Delete
index.php
3.30 KB
Rename
Delete
privacy.php
3.51 KB
Rename
Delete
process.php
9.28 KB
Rename
Delete
sitemap.xml
1.31 KB
Rename
Delete
terms.php
2.73 KB
Rename
Delete
<?php // index.php // Any necessary PHP initialization can go here ?> <!DOCTYPE html> <html lang="en"> <?php include 'includes/head.php'; ?> <body> <?php include 'includes/header.php'; ?> <!-- Include the Intro Section --> <?php include 'includes/intro.php'; ?> <div class="container" id="tool" style="margin-top: 30px; padding: 20px; background-color: #f9f9f9; border: 1px solid #ddd; border-radius: 5px; text-align: center;"> <h2>Image Converter, Resizer and Compressor Tool</h2> <form action="/process/" method="post" enctype="multipart/form-data"> <!-- Image Upload --> <label for="image">Select Image:</label> <input type="file" name="image" id="image" required> <!-- Convert To --> <label for="convert_to">Convert To:</label> <select name="convert_to" id="convert_to" required> <option value="png">PNG</option> <option value="jpg">JPG</option> <option value="jpeg">JPEG</option> <option value="gif">GIF</option> <option value="ico">ICO</option> <option value="tiff">TIFF</option> <option value="bmp">BMP</option> <!-- SVG handling can be complex; consider excluding or handling separately --> </select> <!-- Resize Options --> <h3>Resize Image</h3> <label for="resize_width">Width (px):</label> <input type="number" name="resize_width" id="resize_width" min="1"> <label for="resize_height">Height (px):</label> <input type="number" name="resize_height" id="resize_height" min="1"> <label for="resize_percentage">Or Resize by Percentage:</label> <select name="resize_percentage" id="resize_percentage"> <option value="">-- Select Percentage --</option> <option value="25">25%</option> <option value="50">50%</option> <option value="75">75%</option> <option value="100">100%</option> </select> <!-- Compression Options --> <h3>Compress Image</h3> <label for="compress_type">Compression Type:</label> <select name="compress_type" id="compress_type" required> <option value="size">Target File Size (KB)</option> <option value="quality">Quality Percentage</option> </select> <label for="compress_value">Compression Value:</label> <input type="number" name="compress_value" id="compress_value" min="1" placeholder="e.g., 100 for 100KB or 75 for 75%"> <input type="submit" value="Process Image"> </form> </div> <!-- Include the About Section --> <?php include 'includes/about.php'; ?> <!-- Include the How to use Section --> <?php include 'includes/how-to-use.php'; ?> <!-- Include the features Section --> <?php include 'includes/featured.php'; ?> <!-- Include the Faqs Section --> <?php include 'includes/faqs.php'; ?> <?php include 'includes/footer.php'; ?> </body> </html>
Save