75 lines
1.4 KiB
PHP
75 lines
1.4 KiB
PHP
<?php
|
|
// Main page
|
|
|
|
|
|
|
|
$IS_FRONTEND = true;
|
|
|
|
// Includes
|
|
require_once("api/_auth.php");
|
|
require_once("api/user/index.php");
|
|
require_once("front/notifications.php");
|
|
|
|
|
|
|
|
$PAGE_TITLE = null; // String that will be showed as "E949: $PAGE_TITLE"
|
|
$PAGE_STYLE = null; // Path to file with style that will be included
|
|
$PAGE_FILE = null; // Path to main body file that will be included
|
|
|
|
|
|
|
|
$PICKED_PAGE = null;
|
|
if (isset($_GET["do"]))
|
|
$PICKED_PAGE = $_GET["do"];
|
|
else
|
|
$PICKED_PAGE = "";
|
|
|
|
$WHAT_PAGE_IS_CURRENT = array(
|
|
"main" => false,
|
|
"login" => false,
|
|
"register" => false
|
|
);
|
|
|
|
// Picking current page
|
|
switch ($PICKED_PAGE) {
|
|
// Registration page
|
|
case "register":
|
|
$WHAT_PAGE_IS_CURRENT["register"] = true;
|
|
$PAGE_TITLE = "Register";
|
|
$PAGE_STYLE = "front/styles/main.css";
|
|
$PAGE_FILE = "front/pages/register/page.php";
|
|
break;
|
|
// Login page
|
|
case "login":
|
|
$WHAT_PAGE_IS_CURRENT["login"] = true;
|
|
$PAGE_TITLE = "Login";
|
|
$PAGE_STYLE = "front/styles/main.css";
|
|
$PAGE_FILE = "front/pages/login/page.php";
|
|
break;
|
|
// Main page
|
|
case "index":
|
|
case "main":
|
|
default:
|
|
$WHAT_PAGE_IS_CURRENT["main"] = true;
|
|
$PAGE_TITLE = "Index";
|
|
$PAGE_STYLE = "front/styles/index.css";
|
|
$PAGE_FILE = "front/pages/index/page.php";
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<?php require_once("front/head.php"); ?>
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
<?php
|
|
require_once($PAGE_FILE);
|
|
require_once("front/footer.php");
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html>
|