12 lines
354 B
PHP
12 lines
354 B
PHP
<?php
|
|
$HTML = new HTML();
|
|
if(@$_SESSION['LOGIN'] == 'true')
|
|
{
|
|
$HTML->importHTML("../templates/dashboard.html");
|
|
|
|
if(@$_SESSION['LEVEL'] > 100)
|
|
$HTML->importHTML("../templates/dashboard-admin.html");
|
|
|
|
$HTML->ReplaceLayoutInhalt("%%USERNAME%%", htmlspecialchars(@$_SESSION['DISPLAYNAME']));
|
|
}
|
|
?>
|