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 /
assignment.work.zone /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2026-03-13 15:14
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
hania
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
includes
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
user
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
.user.ini
578
B
-rw-r--r--
2026-03-13 17:04
add_maintenance_setting.php
669
B
-rw-r--r--
2026-03-12 12:31
check_db.php
161
B
-rw-r--r--
2026-03-12 15:16
check_withdrawals.php
156
B
-rw-r--r--
2026-03-12 15:17
contact.php
6.42
KB
-rw-r--r--
2026-03-28 15:18
database.sql
19.53
KB
-rw-r--r--
2026-03-11 23:07
debug.php
5.09
KB
-rw-r--r--
2026-03-30 15:21
error_log
8.83
KB
-rw-r--r--
2026-03-30 15:27
forgot-password.php
2.16
KB
-rw-r--r--
2026-03-30 15:26
how-it-works.php
1.99
KB
-rw-r--r--
2026-03-11 22:52
index.php
9.37
KB
-rw-r--r--
2026-03-12 00:13
login.php
5.17
KB
-rw-r--r--
2026-03-30 15:28
logout.php
56
B
-rw-r--r--
2026-03-11 23:27
maintenance.php
4.5
KB
-rw-r--r--
2026-03-12 12:39
php.ini
578
B
-rw-r--r--
2026-03-13 17:04
plans.php
2.72
KB
-rw-r--r--
2026-03-12 00:10
register.php
8.79
KB
-rw-r--r--
2026-03-30 15:27
reset-password.php
6.39
KB
-rw-r--r--
2026-03-14 18:08
update_db.php
421
B
-rw-r--r--
2026-03-12 15:17
update_withdrawals.php
417
B
-rw-r--r--
2026-03-12 15:18
wp-blog-header.php
2.74
KB
-rw-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 'includes/config.php'; $error = ''; if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['login'])) { $email = trim($_POST['email']); $password = $_POST['password']; if (empty($email) || empty($password)) { $error = "Please fill in all fields."; } else { $stmt = $pdo->prepare("SELECT * FROM users WHERE email = ?"); $stmt->execute([$email]); $user = $stmt->fetch(); if ($user && password_verify($password, $user['password'])) { // Skip verification - Log in directly $_SESSION['user_id'] = $user['id']; $_SESSION['full_name'] = $user['full_name']; $_SESSION['status'] = $user['status']; if ($user['status'] == 'active') { header("Location: user/dashboard.php"); } else { header("Location: user/select-plan.php"); } exit; } else { $error = "Invalid Email or Password."; } } } require_once 'includes/header.php'; ?> <div class="auth-page-wrapper"> <div class="auth-split-container"> <!-- Left Side Premium Graphic Area --> <div class="auth-left"> <div class="auth-left-content"> <h2>Welcome to <span class="text-gradient">WorkZone.</span></h2> <p>Log in to access your dashboard, track your tasks, and start earning today safely and securely.</p> <div style="margin-top: 40px; display: flex; align-items: center; gap: 15px;"> <div style="width: 50px; height: 50px; border-radius: 50%; background: rgba(0,210,106,0.1); display: flex; justify-content: center; align-items: center; color: var(--primary-color); font-size: 1.5rem;"> <i class="fas fa-shield-alt"></i> </div> <div> <h4 style="margin: 0; font-size: 1rem;">Secure Login</h4> <p style="margin: 0; font-size: 0.85rem; color: var(--text-muted);">End-to-end encrypted sessions</p> </div> </div> </div> </div> <!-- Right Side Form Area --> <div class="auth-right"> <h2 class="auth-title" style="text-align: left; margin-bottom: 5px;">Sign In</h2> <p style="color: var(--text-muted); margin-bottom: 30px;">Enter your credentials to access your account.</p> <?php if ($error): ?> <div class="badge badge-danger" style="display:block; margin-bottom:20px; text-align:center; padding:15px; font-size:1rem; border-radius:var(--border-radius);"><?php echo htmlspecialchars($error); ?></div> <?php endif; ?> <?php if (isset($_SESSION['success_msg'])): ?> <div class="badge badge-success" style="display:block; margin-bottom:20px; text-align:center; padding:15px; font-size:1rem; border-radius:var(--border-radius); background:var(--primary-color); color:#fff;"><?php echo $_SESSION['success_msg']; unset($_SESSION['success_msg']); ?></div> <?php endif; ?> <form method="POST" action=""> <div class="form-group"> <label style="font-size: 0.9rem; margin-bottom: 8px; display: block; color: var(--text-muted); font-weight: 500;">Email Address</label> <div class="input-with-icon"> <i class="fas fa-envelope"></i> <input type="email" name="email" class="form-control" placeholder="example@email.com" required> </div> </div> <div class="form-group"> <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom: 8px;"> <label style="font-size: 0.9rem; margin:0; display: block; color: var(--text-muted); font-weight: 500;">Password</label> <!-- <a href="forgot-password.php" style="font-size:0.85rem; color:var(--primary-color); text-decoration:none;">Forgot?</a> --> </div> <div class="input-with-icon"> <i class="fas fa-lock"></i> <input type="password" name="password" class="form-control" placeholder="••••••••" required> </div> </div> <button type="submit" name="login" class="btn-primary" style="width:100%; margin-top:10px; padding: 15px; font-size: 1.1rem; border-radius: 12px; font-weight: 700; display:flex; justify-content:center; align-items:center; gap: 10px;"> Login Securely <i class="fas fa-arrow-right"></i> </button> </form> <div style="text-align:center; margin-top:30px; color:var(--text-muted); font-size: 0.95rem;"> New around here? <a href="register.php" style="color:var(--primary-color); font-weight: 600; text-decoration: none;">Create an account</a> </div> </div> </div> </div> <?php require_once 'includes/footer.php'; ?>