[ 'required' => true, 'min' => 3, 'max' => 20 ], 'password' => [ 'required' => true, 'min' => 8, 'max' => 100 ], 'confirm_password' => [ 'required' => true, 'matches' => 'password' ] ]; if ($validator->validate($rules)) { $username = $_POST['username']; $password = $_POST['password']; // registering $result = $userObject->register($username, $password); // redirect to login if ($result === true) { Feedback::flash('NOTICE', 'DEFAULT', "Registration successful. You can log in now."); header('Location: ' . htmlspecialchars($app_root)); exit(); // registration fail, redirect to login } else { Feedback::flash('ERROR', 'DEFAULT', "Registration failed. $result"); header('Location: ' . htmlspecialchars($app_root)); exit(); } } else { Feedback::flash('ERROR', 'DEFAULT', $validator->getFirstError()); header('Location: ' . htmlspecialchars($app_root . '?page=register')); exit(); } } } catch (Exception $e) { Feedback::flash('ERROR', 'DEFAULT', $e->getMessage()); } // Get any new feedback messages include '../app/includes/feedback-get.php'; include '../app/includes/feedback-show.php'; // Load the template include '../app/templates/form-register.php'; // registration disabled } else { echo Feedback::render('NOTICE', 'DEFAULT', 'Registration is disabled', false); } ?>