Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
new.ads /
user /
steps /
Delete
Unzip
Name
Size
Permission
Date
Action
step-1.php
4.73
KB
-rw-r--r--
2025-11-13 19:18
step-2.php
5.17
KB
-rw-r--r--
2025-11-13 19:18
step-3.php
7.22
KB
-rw-r--r--
2025-11-13 19:19
step-4.php
8.3
KB
-rw-r--r--
2025-11-13 22:20
Save
Rename
<!-- Step 1: Personal Information --> <h4 class="mb-4"><i class="fas fa-user me-2"></i>Personal Information</h4> <form method="POST" class="needs-validation" novalidate> <input type="hidden" name="step" value="1"> <div class="row"> <div class="col-md-6 mb-3"> <label for="full_name" class="form-label">Full Name <span class="text-danger">*</span></label> <input type="text" class="form-control" id="full_name" name="full_name" value="<?php echo isset($_SESSION['application_step1']['full_name']) ? htmlspecialchars($_SESSION['application_step1']['full_name']) : ''; ?>" required> <div class="invalid-feedback">Please provide your full name.</div> </div> <div class="col-md-6 mb-3"> <label for="father_name" class="form-label">Father's Name <span class="text-danger">*</span></label> <input type="text" class="form-control" id="father_name" name="father_name" value="<?php echo isset($_SESSION['application_step1']['father_name']) ? htmlspecialchars($_SESSION['application_step1']['father_name']) : ''; ?>" required> <div class="invalid-feedback">Please provide your father's name.</div> </div> </div> <div class="row"> <div class="col-md-6 mb-3"> <label for="age" class="form-label">Age <span class="text-danger">*</span></label> <input type="number" class="form-control" id="age" name="age" min="18" max="100" value="<?php echo isset($_SESSION['application_step1']['age']) ? $_SESSION['application_step1']['age'] : ''; ?>" required> <div class="invalid-feedback">Please provide a valid age (18-100).</div> </div> <div class="col-md-6 mb-3"> <label for="education" class="form-label">Education <span class="text-danger">*</span></label> <select class="form-select" id="education" name="education" required> <option value="">Select Education Level</option> <option value="Primary" <?php echo (isset($_SESSION['application_step1']['education']) && $_SESSION['application_step1']['education'] === 'Primary') ? 'selected' : ''; ?>>Primary</option> <option value="Secondary" <?php echo (isset($_SESSION['application_step1']['education']) && $_SESSION['application_step1']['education'] === 'Secondary') ? 'selected' : ''; ?>>Secondary</option> <option value="Higher Secondary" <?php echo (isset($_SESSION['application_step1']['education']) && $_SESSION['application_step1']['education'] === 'Higher Secondary') ? 'selected' : ''; ?>>Higher Secondary</option> <option value="Bachelor's" <?php echo (isset($_SESSION['application_step1']['education']) && $_SESSION['application_step1']['education'] === "Bachelor's") ? 'selected' : ''; ?>>Bachelor's</option> <option value="Master's" <?php echo (isset($_SESSION['application_step1']['education']) && $_SESSION['application_step1']['education'] === "Master's") ? 'selected' : ''; ?>>Master's</option> <option value="PhD" <?php echo (isset($_SESSION['application_step1']['education']) && $_SESSION['application_step1']['education'] === 'PhD') ? 'selected' : ''; ?>>PhD</option> </select> <div class="invalid-feedback">Please select your education level.</div> </div> </div> <div class="mb-3"> <label for="address" class="form-label">Complete Address <span class="text-danger">*</span></label> <textarea class="form-control" id="address" name="address" rows="3" required><?php echo isset($_SESSION['application_step1']['address']) ? htmlspecialchars($_SESSION['application_step1']['address']) : ''; ?></textarea> <div class="invalid-feedback">Please provide your complete address.</div> </div> <div class="mb-4"> <label for="phone" class="form-label">Phone Number <span class="text-danger">*</span></label> <input type="tel" class="form-control" id="phone" name="phone" value="<?php echo isset($_SESSION['application_step1']['phone']) ? htmlspecialchars($_SESSION['application_step1']['phone']) : ''; ?>" placeholder="03xxxxxxxxx" pattern="[0-9]{11}" required> <div class="invalid-feedback">Please provide a valid 11-digit phone number.</div> </div> <div class="d-flex justify-content-between"> <a href="dashboard.php" class="btn btn-outline-secondary"> <i class="fas fa-arrow-left me-2"></i>Cancel </a> <button type="submit" class="btn btn-primary"> Next Step <i class="fas fa-arrow-right ms-2"></i> </button> </div> </form>