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