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'; ?> <div class="container-fluid"> <div class="row"> <!-- Sidebar --> <nav id="sidebar" class="col-md-3 col-lg-2 d-md-block sidebar collapse"> <div class="position-sticky pt-3"> <div class="text-center mb-4"> <h4>Watch<span class="text-success">&Earn</span></h4> <p class="text-muted">Welcome, <?php echo htmlspecialchars($user['name']); ?>!</p> </div> <ul class="nav flex-column"> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'dashboard.php') ? 'active' : ''; ?>" href="dashboard.php"> <i class="fas fa-home me-2"></i>Dashboard </a> </li> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'deposit.php') ? 'active' : ''; ?>" href="deposit.php"> <i class="fas fa-money-bill-wave me-2"></i>Deposit </a> </li> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'deposit_history.php') ? 'active' : ''; ?>" href="deposit_history.php"> <i class="fas fa-history me-2"></i>Deposit History </a> </li> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'dpin.php') ? 'active' : ''; ?>" href="dpin.php"> <i class="fas fa-key me-2"></i>D.Pin </a> </li> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'dpin_history.php') ? 'active' : ''; ?>" href="dpin_history.php"> <i class="fas fa-list me-2"></i>D.Pin History </a> </li> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'withdraw.php') ? 'active' : ''; ?>" href="withdraw.php"> <i class="fas fa-money-check-alt me-2"></i>Withdraw </a> </li> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'withdraw_history.php') ? 'active' : ''; ?>" href="withdraw_history.php"> <i class="fas fa-history me-2"></i>Withdraw History </a> </li> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'ads.php') ? 'active' : ''; ?>" href="ads.php"> <i class="fas fa-ad me-2"></i>Ads Management </a> </li> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'transactions.php') ? 'active' : ''; ?>" href="transactions.php"> <i class="fas fa-exchange-alt me-2"></i>All Transactions </a> </li> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'profile.php') ? 'active' : ''; ?>" href="profile.php"> <i class="fas fa-user me-2"></i>Profile </a> </li> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'invite.php') ? 'active' : ''; ?>" href="invite.php"> <i class="fas fa-user-friends me-2"></i>User Invite </a> </li> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'team.php') ? 'active' : ''; ?>" href="team.php"> <i class="fas fa-users me-2"></i>Team Users </a> </li> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'commission.php') ? 'active' : ''; ?>" href="commission.php"> <i class="fas fa-percentage me-2"></i>Referral Commission </a> </li> <li class="nav-item"> <a class="nav-link <?php echo ($current_page == 'plans.php') ? 'active' : ''; ?>" href="plans.php"> <i class="fas fa-box me-2"></i>Membership Plans </a> </li> </ul> <hr class="my-4"> <ul class="nav flex-column"> <li class="nav-item"> <a class="nav-link" href="notifications.php"> <i class="fas fa-bell me-2"></i>Notifications <?php if ($unread_notifications > 0): ?> <span class="notification-badge"><?php echo $unread_notifications; ?></span> <?php endif; ?> </a> </li> <li class="nav-item"> <a class="nav-link" href="logout.php"> <i class="fas fa-sign-out-alt me-2"></i>Logout </a> </li> </ul> </div> </nav> <!-- 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">Dashboard</h1> <div class="btn-toolbar mb-2 mb-md-0"> <!-- Mobile Menu --> <div class="mobile-menu-container"> <button class="mobile-menu-btn" id="mobileMenuBtn"> <i class="fas fa-bars"></i> Menu </button> <div class="mobile-dropdown-menu" id="mobileDropdownMenu"> <a href="dashboard.php"><i class="fas fa-home me-2"></i> Dashboard</a> <a href="deposit.php"><i class="fas fa-money-bill-wave me-2"></i> Deposit</a> <a href="deposit_history.php"><i class="fas fa-history me-2"></i> Deposit History</a> <a href="dpin.php"><i class="fas fa-key me-2"></i> D.Pin Request</a> <a href="activate_dpin.php"><i class="fas fa-key me-2"></i> Activate D.Pin</a> <a href="dpin_history.php"><i class="fas fa-list me-2"></i> D.Pin History</a> <a href="withdraw.php"><i class="fas fa-money-check-alt me-2"></i> Withdraw</a> <a href="withdraw_history.php"><i class="fas fa-history me-2"></i> Withdraw History</a> <a href="ads.php"><i class="fas fa-ad me-2"></i> Ads Management</a> <a href="transactions.php"><i class="fas fa-exchange-alt me-2"></i> All Transactions</a> <a href="profile.php"><i class="fas fa-user me-2"></i> Profile</a> <a href="invite.php"><i class="fas fa-user-friends me-2"></i> User Invite</a> <a href="team.php"><i class="fas fa-users me-2"></i> Team Users</a> <a href="commission.php"><i class="fas fa-percentage me-2"></i> Referral Commission</a> <a href="plans.php"><i class="fas fa-box me-2"></i> Membership Plans</a> <a href="notifications.php"><i class="fas fa-bell me-2"></i> Notifications</a> <a href="logout.php"><i class="fas fa-sign-out-alt me-2"></i> Logout</a> </div> </div> </div> </div> <!-- Stats Cards --> <div class="row"> <div class="col-md-3"> <div class="stat-card"> <i class="fas fa-wallet text-primary"></i> <h3><?php echo format_currency($user['balance']); ?></h3> <p>Total Balance</p> </div> </div> <div class="col-md-3"> <div class="stat-card"> <i class="fas fa-coins text-success"></i> <h3><?php echo format_currency(0); ?></h3> <p>Today's Earnings</p> </div> </div> <div class="col-md-3"> <div class="stat-card"> <i class="fas fa-calendar-alt text-info"></i> <h3><?php echo format_currency(0); ?></h3> <p>Monthly Earnings</p> </div> </div> <div class="col-md-3"> <div class="stat-card"> <i class="fas fa-tasks text-warning"></i> <h3>0/10</h3> <p>Remaining Ads</p> </div> </div> </div> <!-- Current Plan Status --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h5 class="mb-0">Current Plan Status</h5> </div> <div class="card-body"> <?php if ($user['current_plan']): ?> <?php // Get plan details $stmt = $conn->prepare("SELECT * FROM plans WHERE id = ?"); $stmt->bind_param("i", $user['current_plan']); $stmt->execute(); $plan_result = $stmt->get_result(); $plan = $plan_result->fetch_assoc(); ?> <div class="d-flex justify-content-between align-items-center"> <div> <h4><?php echo htmlspecialchars($plan['name']); ?></h4> <p class="mb-1">Price: <?php echo format_currency($plan['price']); ?></p> <p class="mb-1">Daily Ads: <?php echo $plan['daily_ads']; ?></p> <p class="mb-0">Per Ad Earning: <?php echo format_currency($plan['per_ad_earning']); ?></p> </div> <div class="text-end"> <span class="badge bg-success">Active</span> <p class="mt-2 mb-0">Expires in 15 days</p> </div> </div> <?php else: ?> <div class="text-center py-4"> <i class="fas fa-box-open fa-3x mb-3 text-muted"></i> <h4>No Active Plan</h4> <p class="mb-3">Purchase a plan to start earning</p> <a href="plans.php" class="btn btn-primary">Buy Plan</a> </div> <?php endif; ?> </div> </div> </div> </div> <!-- Progress Chart --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h5 class="mb-0">Earnings Progress</h5> </div> <div class="card-body"> <canvas id="earningsChart" height="100"></canvas> </div> </div> </div> </div> <!-- Recent Activity --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h5 class="mb-0">Recent Activity</h5> </div> <div class="card-body"> <div class="table-responsive"> <table class="table table-striped table-sm"> <thead> <tr> <th>Date</th> <th>Type</th> <th>Description</th> <th>Amount</th> <th>Status</th> </tr> </thead> <tbody> <tr> <td>Oct 15, 2025</td> <td>Ad Earning</td> <td>Watched Coca-Cola Ad</td> <td><?php echo format_currency(2.50); ?></td> <td><span class="badge bg-success">Completed</span></td> </tr> <tr> <td>Oct 14, 2025</td> <td>Deposit</td> <td>JazzCash Deposit</td> <td><?php echo format_currency(500.00); ?></td> <td><span class="badge bg-success">Approved</span></td> </tr> <tr> <td>Oct 12, 2025</td> <td>Plan Purchase</td> <td>Premium Plan</td> <td><?php echo format_currency(1000.00); ?></td> <td><span class="badge bg-success">Completed</span></td> </tr> </tbody> </table> </div> </div> </div> </div> </div> </main> </div> </div> <script> // Earnings Chart const ctx = document.getElementById('earningsChart').getContext('2d'); const earningsChart = new Chart(ctx, { type: 'line', data: { labels: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'], datasets: [{ label: 'Earnings', data: [12, 19, 3, 5, 2, 3, 9], borderColor: '#00c9a7', backgroundColor: 'rgba(0, 201, 167, 0.1)', borderWidth: 2, tension: 0.4, fill: true }] }, options: { responsive: true, plugins: { legend: { display: false } }, scales: { y: { beginAtZero: true, grid: { color: 'rgba(255, 255, 255, 0.1)' }, ticks: { color: 'rgba(255, 255, 255, 0.7)' } }, x: { grid: { color: 'rgba(255, 255, 255, 0.1)' }, ticks: { color: 'rgba(255, 255, 255, 0.7)' } } } } }); // Mobile Menu Toggle document.addEventListener('DOMContentLoaded', function() { const mobileMenuBtn = document.getElementById('mobileMenuBtn'); const mobileDropdownMenu = document.getElementById('mobileDropdownMenu'); if (mobileMenuBtn && mobileDropdownMenu) { mobileMenuBtn.addEventListener('click', function(e) { e.stopPropagation(); mobileDropdownMenu.classList.toggle('show'); }); // Close dropdown when clicking outside document.addEventListener('click', function(e) { if (!mobileMenuBtn.contains(e.target) && !mobileDropdownMenu.contains(e.target)) { mobileDropdownMenu.classList.remove('show'); } }); } }); </script> <?php require_once '../includes/footer.php'; ?> </body> </html>