🐦 FLAPPY BIRD
🐍 SNAKE
WASD / ARROWS — SPACE to start/pause
🦕 DINO JUMP
📣 ANNOUNCEMENT New look! The team has gone ahead and updated some functionality and appearance aspects of the website! Make a ticket if there are any issues. Additional changes are to come.

JOIN SYNC

Create your free account. By signing up you agree to the Terms of Service and Privacy Policy.

Sign up with Discord
OR
$username = trim($_POST['username'] ?? ''); $email = trim($_POST['email'] ?? ''); $password = $_POST['password'] ?? ''; $password_confirm = $_POST['password_confirm'] ?? ''; $twitch = trim($_POST['twitch'] ?? ''); $discord = trim($_POST['discord'] ?? ''); if (empty($username) || empty($email) || empty($password)) { $error = 'Username, email and password are required'; } elseif (!filter_var($email, FILTER_VALIDATE_EMAIL)) { $error = 'Invalid email address format'; } elseif (strlen($username) < 3) { $error = 'Username must be at least 3 characters'; } elseif (strlen($password) < 6) { $error = 'Password must be at least 6 characters'; } elseif ($password !== $password_confirm) { $error = 'Passwords do not match'; } else { $result = $auth->register( $username, $password, $email, empty($twitch) ? null : $twitch, empty($discord) ? null : $discord ); if ($result['success']) { setcookie('auth_token', $result['token'], time() + 604800, '/', '', false, false); header('Location: ../index.php'); exit; } $error = $result['error'] ?? 'Registration failed'; } } $page_title = 'Join SYNC'; $page_og_title = 'Create a SYNC Account'; $page_og_description = 'Sign up for free and become part of the SYNC community hub.'; $page_og_image = 'https://sync-point.xyz/media/Sync_Banner.png'; $page_styles = ' .auth-wrap{flex:1;display:flex;align-items:center;justify-content:center;padding:60px 20px;} .auth-box{background:var(--dark2);border:1px solid var(--border);border-radius:14px;padding:44px 40px;width:100%;max-width:480px;} .auth-title{font-family:var(--font-head);font-size:36px;letter-spacing:5px;text-align:center;margin-bottom:6px;} .auth-title span{color:var(--red);} .auth-sub{text-align:center;color:var(--muted);font-size:12px;letter-spacing:2px;margin-bottom:32px;} .auth-footer{text-align:center;margin-top:24px;font-size:13px;color:var(--muted);} .auth-footer a{color:var(--red);font-weight:700;} .opt-label{font-size:11px;color:var(--muted);letter-spacing:1px;margin-left:6px;text-transform:uppercase;} '; require_once '../header.php'; ?>

JOIN SYNC

Create your free account. By signing up you agree to the Terms of Service and Privacy Policy.