= Studip\VueApp::create('SystemNotificationManager')
->withProps([
'id' => 'system-notifications',
'class' => 'system-notifications-login',
'notifications' => PageLayout::getMessages(MessageBox::class),
'append-all-to' => '#loginbox'
]) ?>
= htmlReady(Config::get()->UNI_NAME_CLEAN) ?>
if ($show_login) : ?>
= $this->render_partial('_standard_loginform', [
'hidden' => false,
'login_footer_id' => 'login-footer-top'
]) ?>
endif ?>
if ($show_hidden_login) : ?>
= $this->render_partial('_standard_loginform', [
'hidden' => empty($loginerror),
'login_footer_id' => 'login-footer-bottom'
]) ?>
endif ?>
if (Config::get()->LOGIN_FAQ_VISIBILITY && count($faq_entries) > 0) : ?>
= htmlReady(Config::get()->LOGIN_FAQ_TITLE) ?>
foreach ($faq_entries as $entry) : ?>
= formatReady($entry->description) ?>
endforeach ?>
endif ?>