["landing.php"], "/admin/init/database" => ["admin_initdatabase.php"], "/admin/accounts" => ["admin_accounts.php"], "/account" => ["account.php", "Your account"], "/signin" => ["signin.php", "Sign in"], "/signup" => ["signup.php", "Sign up"], "/signout" => ["signout.php", "Signed out"], "/forgot_password" => ["forgot_password.php", "Forgot password"], "/admin/signinas" => ["signinas.php"] ); if (isset($paths[$path])) { $include = $paths[$path][0]; if (isset($paths[$path][1])) { $doc_title = $paths[$path][1]; } } else { $doc_title = "404"; http_response_code(404); } ?>
"); } include($include); ?>