Created Landing Page, Revamped account system, added account sessions and password obfuscation(not being pushed to the public branch) revamping main site bit by bit

This commit is contained in:
2026-03-03 08:13:51 +00:00
parent 5b500e3b8d
commit 0e728eae0e
65 changed files with 1269 additions and 35 deletions

25
store.php Normal file
View File

@@ -0,0 +1,25 @@
<?php
session_start();
?>
<!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(); startApps();">
<?php
$Page = "Store";
require_once("Hotbar.php");
?>
<script src="WindowManager.js"></script>
<script src="AlignDesktopApps.js"></script>
<script>
function startApps() {
OpenApp(document.querySelectorAll('.ComingSoonIcon')[0], true, 50, 45);
}
</script>
</body>
</html>