PHP_SMART_HOME_V3/app/views/Login.php

20 lines
310 B
PHP
Raw Normal View History

2019-08-23 11:39:42 +00:00
<?php
class Login extends Template
{
function __construct()
{
global $userManager;
global $lang;
if ($userManager->isLogin()){
header('Location: ./');
}
$template = new Template('login');
$template->prepare('title', 'Home');
$template->prepare('lang', $lang);
$template->render();
}
}