* some changes

* moved some admin html code from php to twig templates (.html files)
* minimum PHP version required by installer is now 5.1.2, cause of spl_autoload_register functon.
* depracated Twig to version 1.20.0 cause of Autoloader
* removed unused admin stylish template
This commit is contained in:
slawkens
2017-08-28 10:02:49 +02:00
parent 603c2175e3
commit 15961f0c17
418 changed files with 15624 additions and 4322 deletions

View File

@@ -19,14 +19,6 @@ if(isset($errors)) {
error($error);
}
}
?>
Please login.
<form method="post">
<input type="password" name="account_login" id="account-name-input" size="30" maxlength="30" autofocus/><br/>
<input type="password" name="password_login" size="30" maxlength="29"/><br/>
<input type="checkbox" id="remember_me" name="remember_me" value="true"/>
<label for="remember_me"> Remember me</label><br/>
<input type="hidden" name="admin" value="1"/>
<input type="submit" class="button" value="Login"/>
</form>
echo $twig->render('admin.login.html');
?>