diff --git a/index.php b/index.php index 0a66573..f33ad0d 100644 --- a/index.php +++ b/index.php @@ -462,7 +462,7 @@ require_once __DIR__ . '/includes/header.php'; 'Binance', 'color' => '#f3ba2f', 'icon' => 'bi-currency-bitcoin'], - ['name' => 'OKX', 'color' => '#ffffff', 'icon' => 'bi-box-seam'], + ['name' => 'Bitget', 'color' => '#00d2d2', 'icon' => 'bi-box-seam'], ['name' => 'Bybit', 'color' => '#ffb11a', 'icon' => 'bi-activity'], ['name' => 'Huobi', 'color' => '#00b5f8', 'icon' => 'bi-globe'], ['name' => 'Coinbase', 'color' => '#0052ff', 'icon' => 'bi-shield-shaded'], diff --git a/mail/MailService.php b/mail/MailService.php index 19050e3..7f1bca9 100644 --- a/mail/MailService.php +++ b/mail/MailService.php @@ -89,20 +89,20 @@ class MailService } /** - * Send verification code email (OKX Style) + * Send verification code email (BYRO Style) */ public static function sendVerificationCode(string $to, string $code, string $type = 'register') { - $subject = ($type === 'register' ? '[OKX] Create Account' : '[OKX] Reset Password') . ' - Verification Code: ' . $code; + $subject = ($type === 'register' ? '[BYRO] Create Account' : '[BYRO] Reset Password') . ' - Verification Code: ' . $code; $title = $type === 'register' ? 'Verify your email' : 'Reset your password'; - $instruction = $type === 'register' ? 'You are creating an account on OKX.' : 'You are resetting your account password.'; + $instruction = $type === 'register' ? 'You are creating an account on BYRO.' : 'You are resetting your account password.'; $action = $type === 'register' ? 'registration' : 'password reset'; $html = "
-
OKX
+
BYRO
@@ -117,14 +117,14 @@ class MailService

- This code is valid for 10 minutes. For your account security, please do not share this code with anyone, including OKX staff. + This code is valid for 10 minutes. For your account security, please do not share this code with anyone, including BYRO staff.

Safety Warning:

@@ -138,13 +138,13 @@ class MailService

This is an automated message, please do not reply.

-
OKX Team
-
© 2026 OKX. All rights reserved.
+
BYRO Team
+
© 2026 BYRO. All rights reserved.
"; - $text = "{$title}\n\nDear user,\n\n{$instruction} Your verification code is: {$code}\n\nThis code is valid for 10 minutes. For your account security, do not share this code with anyone.\n\nSafety Tips:\n- Never give your password or verification code to anyone.\n- Ensure you are on the official OKX website.\n\nOKX Team"; + $text = "{$title}\n\nDear user,\n\n{$instruction} Your verification code is: {$code}\n\nThis code is valid for 10 minutes. For your account security, do not share this code with anyone.\n\nSafety Tips:\n- Never give your password or verification code to anyone.\n- Ensure you are on the official BYRO website.\n\nBYRO Team"; return self::sendMail($to, $subject, $html, $text); }