23 lines
362 B
PHP
23 lines
362 B
PHP
|
<?php
|
||
|
class Login extends Template
|
||
|
{
|
||
|
function __construct()
|
||
|
{
|
||
|
global $userManager;
|
||
|
global $lang;
|
||
|
|
||
|
if ($userManager->isLogin()){
|
||
|
header('Location: ' . BASEURL);
|
||
|
}
|
||
|
|
||
|
$template = new Template('login');
|
||
|
$template->prepare('baseDir', BASEDIR);
|
||
|
$template->prepare('title', 'Home');
|
||
|
$template->prepare('lang', $lang);
|
||
|
|
||
|
|
||
|
|
||
|
$template->render();
|
||
|
}
|
||
|
}
|