This commit is contained in:
ui0ppk 2023-02-16 21:00:08 +02:00
parent e4e5f36c60
commit c1b14ad117
1 changed files with 11 additions and 1 deletions

View File

@ -13,6 +13,14 @@ class PartyStarter {
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css">';
}
function header() {
// alert
$alert = false;
if($alert) {
$alert = 'Sexy alert';
// do not touch
$alert = '<div class="alert alert-secondary mt-3 mx-3">'.$alert.'</div>';
}
// to not confuse you i renamed it from loggedoutheader to header since qzip made it both lol
require 'core/config.php';
$grubloxlogotohome = '<a class="navbar-brand text-dark" href="/"><span class="grufont fs-3">G </span><span class="gotham">GRUBLOX</span></a>';
@ -158,7 +166,9 @@ class PartyStarter {
</ul>
</div>
</div>
</nav>';
</nav>
'.$alert;
}
}