This commit is contained in:
Roman Hergenreder
2020-06-14 12:38:35 +02:00
parent 8fc0b4bb05
commit bc2fbbda68
26 changed files with 21488 additions and 12 deletions

View File

@@ -3,6 +3,8 @@
namespace Views;
use Elements\Body;
use Elements\Link;
use Elements\Script;
class LoginBody extends Body {
@@ -12,7 +14,14 @@ class LoginBody extends Body {
public function loadView() {
parent::loadView();
$this->getDocument()->getHead()->loadBootstrap();
$head = $this->getDocument()->getHead();
$head->loadBootstrap();
$head->loadJQuery();
$head->loadFontawesome();
$head->addJS(Script::CORE);
$head->addCSS(Link::CORE);
$head->addJS(Script::ADMIN);
$head->addCSS(Link::ADMIN);
}
public function getCode() {