This commit is contained in:
2021-12-01 21:04:06 -03:00
parent 1230c02f60
commit 7e01974ec8
201 changed files with 15370 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<?php
include_once dirname(dirname(__DIR__)) . '/bootstrap/autoload.php';
sanitize();
$steps = [
'create_user_base',
'log_locations',
'create_guest',
'create_admin',
'end_install'
];
if (get('step') == null) {
$next = $steps[0];
} else {
$next = $steps[array_search(get('step'), $steps) + 1];
}
header('Location: ' . $next . '.php');
?>