| 
<?phprequire 'config.php';
 
 if(!Session::exists('UserData')) header('Location: login.php');
 
 $Template = new Template();
 $Member = new User();
 
 $Template->file('home.html')
 ->assign('test', 3000)
 ->assign('Title', Configuration::get('Title'))
 ->render();
 ?>
 
 |