stylehub/pages/global/account.php

20 lines
430 B
PHP
Raw Normal View History

2024-01-16 19:24:40 +01:00
<?php
2024-01-18 11:49:38 +01:00
require_once "lib/router.php";
2024-01-16 20:43:57 +01:00
function render()
{
global $routerConfig;
ob_start();
if ($_SESSION["ID"] > 0) {
$account_template = file_get_contents($routerConfig["template_dir"] . "account.html");
echo $account_template;
} else {
$login_template = file_get_contents($routerConfig["template_dir"] . "login.html");
echo $login_template;
}
return ob_get_clean();
}