initial Commit

This commit is contained in:
2026-01-26 08:49:11 +00:00
parent 9b72040b35
commit ecfb726d61
104 changed files with 1248 additions and 0 deletions

24
Forum.php Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Halbear.Net</title>
<link rel="stylesheet" href="default.css">
</head>
<body onload="CalculateGrid(); SetUp();">
<?php
$Page = "Forum";
require_once("Hotbar.php");
?>
<script>
var Button = document.getElementById("ForumBtn");
Button.onclick = function(){document.location.href='index.php';};
Button.children[0].textContent = "Home";
</script>
<script src="WindowManager.js"></script>
<script src="AlignDesktopApps.js"></script>
<script>
OpenApp(document.querySelectorAll('.NothingHereIcon')[0], true, 50, 45)
</script>
</body>
</html>