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 /
.trash /
user.2 /
Delete
Unzip
Name
Size
Permission
Date
Action
activate_dpin.php
7.76
KB
-rw-r--r--
2025-10-18 22:14
ads.php
11.49
KB
-rw-r--r--
2025-10-18 22:44
commission.php
7.01
KB
-rw-r--r--
2025-10-18 21:56
dashboard.php
17.28
KB
-rw-r--r--
2025-10-18 22:49
deposit.php
6.03
KB
-rw-r--r--
2025-10-18 21:45
deposit_history.php
4.26
KB
-rw-r--r--
2025-10-18 21:55
dpin.php
7.2
KB
-rw-r--r--
2025-10-18 22:26
dpin_history.php
5.91
KB
-rw-r--r--
2025-10-18 22:15
invite.php
6.44
KB
-rw-r--r--
2025-10-18 21:43
logout.php
91
B
-rw-r--r--
2025-10-18 21:42
notifications.php
3.73
KB
-rw-r--r--
2025-10-18 21:47
plans.php
10.34
KB
-rw-r--r--
2025-10-18 22:43
profile.php
6.69
KB
-rw-r--r--
2025-10-18 21:43
purchase_plan.php
4.99
KB
-rw-r--r--
2025-10-18 21:46
sidebar.php
5.16
KB
-rw-r--r--
2025-10-18 22:15
team.php
6.81
KB
-rw-r--r--
2025-10-18 21:47
transactions.php
4.37
KB
-rw-r--r--
2025-10-18 21:47
withdraw.php
7.92
KB
-rw-r--r--
2025-10-18 21:56
withdraw_history.php
7.74
KB
-rw-r--r--
2025-10-18 21:56
Save
Rename
<?php require_once '../includes/header.php'; // Get D.Pin history for user $stmt = $conn->prepare("SELECT * FROM dpins WHERE user_id = ? ORDER BY created_at DESC"); $stmt->bind_param("i", $_SESSION['user_id']); $stmt->execute(); $dpins_result = $stmt->get_result(); $dpins = []; while ($row = $dpins_result->fetch_assoc()) { $dpins[] = $row; } ?> <div class="container-fluid"> <div class="row"> <!-- Sidebar --> <?php include 'sidebar.php'; ?> <!-- Main Content --> <main class="col-md-9 ms-sm-auto col-lg-10 main-content"> <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom"> <h1 class="h2">D.Pin History</h1> </div> <div class="card"> <div class="card-header"> <h5 class="mb-0">Your D.Pin History</h5> </div> <div class="card-body"> <?php if (empty($dpins)): ?> <div class="text-center py-5"> <i class="fas fa-key fa-3x text-muted mb-3"></i> <h4>No D.Pin History</h4> <p class="mb-3">You haven't requested any D.Pins yet.</p> <a href="dpin.php" class="btn btn-primary me-2">Request D.Pin</a> <a href="activate_dpin.php" class="btn btn-success">Activate D.Pin</a> </div> <?php else: ?> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Date</th> <th>Pin Code</th> <th>Amount</th> <th>Status</th> <th>Activated</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($dpins as $dpin): ?> <tr> <td><?php echo date('M d, Y H:i', strtotime($dpin['created_at'])); ?></td> <td> <?php if ($dpin['status'] == 'active' || $dpin['status'] == 'used'): ?> <?php echo htmlspecialchars($dpin['pin_code']); ?> <?php else: ?> <span class="text-muted">Pending approval</span> <?php endif; ?> </td> <td><?php echo format_currency($dpin['amount']); ?></td> <td> <span class="badge bg-<?php echo $dpin['status'] == 'active' ? 'success' : ($dpin['status'] == 'used' ? 'secondary' : ($dpin['status'] == 'pending' ? 'warning' : 'danger')); ?>"> <?php echo ucfirst($dpin['status']); ?> </span> </td> <td> <?php if ($dpin['activated_at']): ?> <?php echo date('M d, Y H:i', strtotime($dpin['activated_at'])); ?> <?php else: ?> <span class="text-muted">Not activated</span> <?php endif; ?> </td> <td> <?php if ($dpin['status'] == 'active'): ?> <a href="activate_dpin.php" class="btn btn-sm btn-primary">Activate</a> <?php elseif ($dpin['status'] == 'used'): ?> <span class="text-success">Activated</span> <?php else: ?> <span class="text-muted">Pending</span> <?php endif; ?> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <?php endif; ?> </div> </div> <?php if (!empty($dpins)): ?> <div class="card mt-4"> <div class="card-header"> <h5 class="mb-0">Activate Your D.Pin</h5> </div> <div class="card-body"> <p>Have an active D.Pin? Activate it to add balance to your account:</p> <a href="activate_dpin.php" class="btn btn-primary">Activate D.Pin</a> </div> </div> <?php endif; ?> </main> </div> </div> <?php require_once '../includes/footer.php'; ?>