mirror of
https://github.com/xcat2/xcat-core.git
synced 2025-05-21 19:22:05 +00:00
18 lines
228 B
PHP
18 lines
228 B
PHP
<?php
|
|
/**
|
|
* Configure page
|
|
*/
|
|
require_once "lib/functions.php";
|
|
require_once "lib/ui.php";
|
|
|
|
/* Load page */
|
|
loadPage();
|
|
|
|
/* Login user */
|
|
if (!isAuthenticated()) {
|
|
login();
|
|
} else {
|
|
loadContent();
|
|
}
|
|
?>
|