prepare("UPDATE users SET security_password = ? WHERE id = ?")->execute([$default_sec, $user['id']]); $user['security_password'] = $default_sec; } catch (Exception $e) {} } // Handle KYC upload if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['kyc_submit'])) { $real_name = $_POST['real_name'] ?? ''; $id_number = $_POST['id_number'] ?? ''; try { $stmt = db()->prepare("UPDATE users SET real_name = ?, id_number = ?, kyc_status = 'pending' WHERE id = ?"); $stmt->execute([$real_name, $id_number, $user['id']]); $msg = t('Identity verification submitted and is under review.'); $user['kyc_status'] = 'pending'; } catch (Exception $e) { $error = 'Error: ' . $e->getMessage(); } } // Handle Password Changes if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['change_password'])) { $type = $_POST['type'] ?? 'login'; // 'login' or 'security' $old_pass = $_POST['old_password'] ?? ''; $new_pass = $_POST['new_password'] ?? ''; $confirm_pass = $_POST['confirm_password'] ?? ''; if ($new_pass !== $confirm_pass) { $error = 'New passwords do not match.'; } elseif (strlen($new_pass) < 6) { $error = 'Password must be at least 6 characters.'; } else { $current_hash = ($type === 'login') ? $user['password_hash'] : $user['security_password']; if (password_verify($old_pass, $current_hash)) { $new_hash = password_hash($new_pass, PASSWORD_DEFAULT); $column = ($type === 'login') ? 'password_hash' : 'security_password'; try { db()->prepare("UPDATE users SET $column = ? WHERE id = ?")->execute([$new_hash, $user['id']]); $msg = 'Password updated successfully.'; } catch (Exception $e) { $error = 'Update failed: ' . $e->getMessage(); } } else { $error = 'Current password incorrect.'; } } } ?>

UID:

USDT

Level 2

Recent Activities
Time Action Status
Account Login Success

Total Net Value (USDT)

Yesterday Profit/Loss

+$0.00 (0.00%)

USDT
Tether
≈ $

Last updated: Recently

Required for withdrawals

2FA Authentication

Google Authenticator

Reviewing...

Your identity documents are being verified by our team.

Verified

Your account is fully verified for all features.

Front Side
Back Side
Selfie with ID