History Clean Up

This commit is contained in:
JonatanRek
2019-08-23 13:39:42 +02:00
commit 8cf912993d
112 changed files with 11395 additions and 0 deletions

19
views/Login.php Normal file
View File

@@ -0,0 +1,19 @@
<?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();
}
}