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 /
Delete
Unzip
Name
Size
Permission
Date
Action
steps
[ DIR ]
drwxr-xr-x
2025-11-13 19:19
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
application.php
15.46
KB
-rw-r--r--
2025-11-13 19:26
dashboard.php
17.55
KB
-rw-r--r--
2025-11-13 20:04
new-application.php
10.31
KB
-rw-r--r--
2025-11-13 22:10
payment.php
13.31
KB
-rw-r--r--
2025-11-13 21:38
payments.php
16.12
KB
-rw-r--r--
2025-11-13 19:27
profile.php
14.19
KB
-rw-r--r--
2025-11-13 21:56
wp-blog-header.php
2.74
KB
-r--r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
<?php require_once '../config.php'; require_once '../database.php'; require_once '../libs/functions.php'; requireLogin(); $user_id = $_SESSION['user_id']; // Get user's application $application = $db->fetch("SELECT * FROM applications WHERE user_id = ?", [$user_id]); if (!$application) { setFlashMessage('error', 'No application found. Please submit a new application.'); redirect(SITE_URL . '/user/dashboard.php'); } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Application - <?php echo SITE_NAME; ?></title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet"> <link href="../assets/css/style.css" rel="stylesheet"> </head> <body> <!-- Navigation --> <nav class="navbar navbar-expand-lg navbar-light"> <div class="container"> <a class="navbar-brand" href="../index.php"> <i class="fas fa-car me-2"></i><?php echo SITE_NAME; ?> </a> <div class="navbar-nav ms-auto"> <a class="nav-link" href="dashboard.php"> <i class="fas fa-arrow-left me-1"></i>Back to Dashboard </a> </div> </div> </nav> <div class="container mt-4"> <!-- Application Header --> <div class="row mb-4"> <div class="col-12"> <div class="card border-0 shadow-sm"> <div class="card-header bg-primary text-white"> <div class="row align-items-center"> <div class="col"> <h4 class="mb-0"> <i class="fas fa-file-alt me-2"></i>Application Details </h4> </div> <div class="col-auto"> <span class="badge bg-<?php echo $application['status'] === 'approved' ? 'success' : ($application['status'] === 'rejected' ? 'danger' : 'warning'); ?> fs-6"> <?php echo ucfirst($application['status']); ?> </span> </div> </div> </div> <div class="card-body"> <div class="row"> <div class="col-md-6"> <p><strong>Application ID:</strong> #<?php echo str_pad($application['id'], 6, '0', STR_PAD_LEFT); ?></p> <p><strong>Submitted:</strong> <?php echo formatDateTime($application['created_at']); ?></p> </div> <div class="col-md-6"> <p><strong>Last Updated:</strong> <?php echo formatDateTime($application['updated_at']); ?></p> <p><strong>Vehicle Type:</strong> <?php echo htmlspecialchars($application['vehicle_type']); ?></p> </div> </div> <?php if ($application['admin_notes']): ?> <div class="alert alert-info mt-3"> <h6><i class="fas fa-comment me-2"></i>Admin Notes</h6> <p class="mb-0"><?php echo htmlspecialchars($application['admin_notes']); ?></p> </div> <?php endif; ?> </div> </div> </div> </div> <!-- Personal Information --> <div class="row mb-4"> <div class="col-md-6"> <div class="card border-0 shadow-sm"> <div class="card-header bg-success text-white"> <h6 class="mb-0"><i class="fas fa-user me-2"></i>Personal Information</h6> </div> <div class="card-body"> <table class="table table-borderless"> <tr> <td><strong>Full Name:</strong></td> <td><?php echo htmlspecialchars($application['full_name']); ?></td> </tr> <tr> <td><strong>Father's Name:</strong></td> <td><?php echo htmlspecialchars($application['father_name']); ?></td> </tr> <tr> <td><strong>Age:</strong></td> <td><?php echo $application['age']; ?> years</td> </tr> <tr> <td><strong>Education:</strong></td> <td><?php echo htmlspecialchars($application['education']); ?></td> </tr> <tr> <td><strong>Phone:</strong></td> <td><?php echo htmlspecialchars($application['phone']); ?></td> </tr> <tr> <td><strong>Address:</strong></td> <td><?php echo htmlspecialchars($application['address']); ?></td> </tr> </table> </div> </div> </div> <!-- Vehicle Information --> <div class="col-md-6"> <div class="card border-0 shadow-sm"> <div class="card-header bg-info text-white"> <h6 class="mb-0"><i class="fas fa-car me-2"></i>Vehicle Information</h6> </div> <div class="card-body"> <table class="table table-borderless"> <tr> <td><strong>Email:</strong></td> <td><?php echo htmlspecialchars($application['email']); ?></td> </tr> <tr> <td><strong>Confirm Phone:</strong></td> <td><?php echo htmlspecialchars($application['confirm_phone']); ?></td> </tr> <tr> <td><strong>Vehicle Type:</strong></td> <td><?php echo htmlspecialchars($application['vehicle_type']); ?></td> </tr> <tr> <td><strong>Vehicle Name:</strong></td> <td><?php echo htmlspecialchars($application['vehicle_name']); ?></td> </tr> <tr> <td><strong>Registration No:</strong></td> <td><strong><?php echo htmlspecialchars($application['vehicle_number']); ?></strong></td> </tr> <tr> <td><strong>Color:</strong></td> <td><?php echo htmlspecialchars($application['vehicle_color']); ?></td> </tr> </table> </div> </div> </div> </div> <!-- Additional Details --> <div class="row mb-4"> <div class="col-12"> <div class="card border-0 shadow-sm"> <div class="card-header bg-warning text-dark"> <h6 class="mb-0"><i class="fas fa-info-circle me-2"></i>Additional Details</h6> </div> <div class="card-body"> <div class="row"> <div class="col-md-4"> <p><strong>License ID:</strong><br><?php echo htmlspecialchars($application['license_id']); ?></p> </div> <div class="col-md-4"> <p><strong>Driving Experience:</strong><br><?php echo htmlspecialchars($application['driving_experience']); ?></p> </div> <div class="col-md-4"> <p><strong>QR Code Fee:</strong><br>PKR <?php echo number_format(getVehiclePrice($application['vehicle_type'], $db)); ?></p> </div> </div> </div> </div> </div> </div> <!-- Uploaded Documents --> <div class="row mb-4"> <div class="col-12"> <div class="card border-0 shadow-sm"> <div class="card-header bg-secondary text-white"> <h6 class="mb-0"><i class="fas fa-images me-2"></i>Uploaded Documents</h6> </div> <div class="card-body"> <div class="row"> <!-- Vehicle Pictures --> <div class="col-md-9"> <h6>Vehicle Pictures</h6> <div class="row"> <?php if ($application['vehicle_picture1']): ?> <div class="col-md-4 mb-3"> <img src="../uploads/vehicles/<?php echo htmlspecialchars($application['vehicle_picture1']); ?>" alt="Vehicle Front" class="img-fluid rounded shadow-sm"> <p class="text-center mt-1 small text-muted">Front View</p> </div> <?php endif; ?> <?php if ($application['vehicle_picture2']): ?> <div class="col-md-4 mb-3"> <img src="../uploads/vehicles/<?php echo htmlspecialchars($application['vehicle_picture2']); ?>" alt="Vehicle Side" class="img-fluid rounded shadow-sm"> <p class="text-center mt-1 small text-muted">Side View</p> </div> <?php endif; ?> <?php if ($application['vehicle_picture3']): ?> <div class="col-md-4 mb-3"> <img src="../uploads/vehicles/<?php echo htmlspecialchars($application['vehicle_picture3']); ?>" alt="Vehicle Back" class="img-fluid rounded shadow-sm"> <p class="text-center mt-1 small text-muted">Back View</p> </div> <?php endif; ?> </div> </div> <!-- User Picture --> <div class="col-md-3"> <h6>Your Picture</h6> <?php if ($application['user_picture']): ?> <img src="../uploads/users/<?php echo htmlspecialchars($application['user_picture']); ?>" alt="User Picture" class="img-fluid rounded shadow-sm"> <?php else: ?> <div class="bg-light rounded d-flex align-items-center justify-content-center" style="height: 200px;"> <i class="fas fa-user fa-3x text-muted"></i> </div> <?php endif; ?> </div> </div> </div> </div> </div> </div> <!-- QR Code Section --> <?php if ($application['status'] === 'approved' && $application['qr_code']): ?> <div class="row mb-4"> <div class="col-12"> <div class="card border-0 shadow-sm"> <div class="card-header bg-success text-white"> <h6 class="mb-0"><i class="fas fa-qrcode me-2"></i>Your QR Code</h6> </div> <div class="card-body text-center"> <?php if ($application['qr_activated']): ?> <div class="qr-container"> <img src="../uploads/qr/<?php echo htmlspecialchars($application['qr_code']); ?>" alt="QR Code" class="img-fluid mb-3" style="max-width: 200px;"> <h6 class="text-success">QR Code Active</h6> <p class="text-muted">Scan to view your verified profile</p> <a href="../uploads/qr/<?php echo htmlspecialchars($application['qr_code']); ?>" download class="btn btn-success"> <i class="fas fa-download me-2"></i>Download QR Code </a> </div> <?php else: ?> <div class="alert alert-warning"> <h6><i class="fas fa-clock me-2"></i>QR Code Generated</h6> <p class="mb-2">Your QR code has been generated but is not yet active.</p> <p class="mb-0">Please complete the payment to activate your QR code.</p> <a href="payment.php" class="btn btn-warning mt-2"> <i class="fas fa-credit-card me-2"></i>Make Payment </a> </div> <?php endif; ?> </div> </div> </div> </div> <?php endif; ?> <!-- Action Buttons --> <div class="row"> <div class="col-12 text-center"> <a href="dashboard.php" class="btn btn-primary"> <i class="fas fa-tachometer-alt me-2"></i>Back to Dashboard </a> <?php if ($application['status'] === 'approved' && !$application['qr_activated']): ?> <a href="payment.php" class="btn btn-success"> <i class="fas fa-credit-card me-2"></i>Make Payment </a> <?php endif; ?> <a href="payments.php" class="btn btn-outline-info"> <i class="fas fa-history me-2"></i>Payment History </a> </div> </div> </div> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> <script src="../assets/js/main.js"></script> </body> </html>