mirror of
https://github.com/myronblair/tomtomgames
synced 2026-06-30 17:51:08 -05:00
19 lines
748 B
PHP
19 lines
748 B
PHP
<?php
|
|
require_once __DIR__ . '/../../includes/auth.php';
|
|
header('Content-Type: application/json');
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
|
|
echo json_encode(['success'=>false,'error'=>'Method not allowed']); exit;
|
|
}
|
|
|
|
$data = json_decode(file_get_contents('php://input'), true);
|
|
$username = trim($data['username'] ?? '');
|
|
$password = trim($data['password'] ?? '');
|
|
$alias = trim($data['alias'] ?? '');
|
|
$email = trim($data['email'] ?? '');
|
|
$referralCode= trim($data['referral_code']?? '');
|
|
|
|
logSecurityEvent('REGISTER_ATTEMPT', null, 'Registration attempt for: ' . $email, 'info');
|
|
$result = initiateRegistration($username, $password, $alias, $email, $referralCode);
|
|
echo json_encode($result);
|