legal mumbo jumbo, starting to revamp the old UI, user agreement is not a finished page yet

This commit is contained in:
2026-03-05 11:13:45 +00:00
parent f7f139ca72
commit e42cf38b60
44 changed files with 819 additions and 15 deletions

View File

@@ -1,3 +1,4 @@
<div class="CancelAnimOnLoad hotbarWrapper">
<div class="hotbarContainer">
<img class="Logo" src="GeneralAssets/Logo.png" alt="Halbear.net">
@@ -33,10 +34,11 @@
</div>
<div class="DesktopIconWrapper">
<?php
if(!isset($_SESSION['desktop']) || $_SESSION['desktop'] == false){
if(!isset($_SESSION['desktop']) || !$_SESSION['desktop']){
$arrApps = array();
$Apps = scandir($Page."Apps");
foreach ($Apps as $App) {
echo$Page."Apps" . '/' . $App;
$filePath = $Page."Apps" . '/' . $App;
if (is_file($filePath) && str_contains($filePath,"Icon.html")) {
$Name = basename($filePath, "Icon.html");