49 lines
1.3 KiB
PHP
49 lines
1.3 KiB
PHP
<?php
|
|
|
|
// registration is allowed, go on
|
|
if ($config['registration_enabled'] === true) {
|
|
|
|
// require '../app/classes/user.php';
|
|
unset($error);
|
|
|
|
try {
|
|
|
|
// connect to database
|
|
$dbWeb = connectDB($config);
|
|
|
|
// $userObject = new User($dbWeb);
|
|
|
|
if ( $_SERVER['REQUEST_METHOD'] == 'POST' ) {
|
|
$username = $_POST['username'];
|
|
$password = $_POST['password'];
|
|
|
|
// registering
|
|
$result = $userObject->register($username, $password);
|
|
|
|
// redirect to login
|
|
if ($result === true) {
|
|
$_SESSION['notice'] = "Registration successful.<br />You can log in now.";
|
|
header('Location: ' . htmlspecialchars($app_root));
|
|
exit();
|
|
// registration fail, redirect to login
|
|
} else {
|
|
$_SESSION['error'] = "Registration failed. $result";
|
|
header('Location: ' . htmlspecialchars($app_root));
|
|
exit();
|
|
}
|
|
}
|
|
} catch (Exception $e) {
|
|
$error = $e->getMessage();
|
|
}
|
|
|
|
include '../app/templates/block-message.php';
|
|
include '../app/templates/form-register.php';
|
|
|
|
// registration disabled
|
|
} else {
|
|
$notice = 'Registration is disabled';
|
|
include '../app/templates/block-message.php';
|
|
}
|
|
|
|
?>
|