register($username, $password); // redirect to login if ($result === true) { Messages::flash('NOTICE', 'DEFAULT', "Registration successful.
You can log in now."); header('Location: ' . htmlspecialchars($app_root)); exit(); // registration fail, redirect to login } else { Messages::flash('ERROR', 'DEFAULT', "Registration failed. $result"); header('Location: ' . htmlspecialchars($app_root)); exit(); } } } catch (Exception $e) { Messages::flash('ERROR', 'DEFAULT', $e->getMessage()); } // Get any new messages include '../app/includes/messages.php'; include '../app/includes/messages-show.php'; // Load the template include '../app/templates/form-register.php'; // registration disabled } else { echo Messages::render('NOTICE', 'DEFAULT', 'Registration is disabled', false); } ?>