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

View File

@@ -0,0 +1,40 @@
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<title>halbear.net</title>
<meta name="description" content="Official Website of Halbear Networking & Software Ltd">
<meta name="keywords" content="Software, Games, Gaming, Halbear.Net, Halbear, Iron Horse Game Development, Iron Horse, Plane Building, Lost Contact, War Horse, Iostiler, Expedition Emberleaf">
<link rel="stylesheet"href="StyleSheets/MainStyle.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Boldonse&family=DotGothic16&family=Lexend:wght@600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Coral+Pixels&family=Jost:ital,wght@0,100..900;1,100..900&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap" rel="stylesheet">
</head>
<body>
<?php
$Page = "CompanyInformation";
require_once("Hotbar.php");
?>
<div style="width: 100vw; height: 110vh;" onload="ChangeImg();">
<div tabindex="0" class="StaticContentContainer" style="position: absolute; left: 3vh; top: 11vh; width: 45vw; height: 10vh; display: flex; justify-content: center; align-items: center">
<a class="Title" >
Company Information
</a>
</div>
<div tabindex="0" class="StaticContentContainer" style="position: absolute; left: 3vh; top: 26vh; width: 95vw; height: 78vh; flex-direction: row;">
<div style="display: flex; flex-direction: column; justify-content: start; align-items: start; width: 100%; height: 100%;">
<a class="LargeWhiteFont" style="padding: 2vh; font-size: 3vh; text-align: left;">
Halbear Networking & Software Ltd is registered in Wales and was incorportated on December 24th 2025<br><br>You can contact our Customer Support through this email address: information@halbear.net<br><br>
Individual Contact Information for figures of authority within the company:<br> Company Secretary: "Owen L"<br>Contact: owenjl@halbear.net <br><br> Company Director: "Harrsion C" <br>Contact: halbear@halbear.net <br><br>Director of Development: "Christian L"<br> Contact: paladin@halbear.net<br><br>Registered Address: (Do not mail here, mail will not arrive nor be opened if it does)<br>LD1 5LW<br>Montpellier park<br>Llandrindod Wells<br>powys, UK
</a>
</div>
</div>
</div>
<div class="BackgroundFade" style="height: 110vh;"></div>
</body>
</html>