Initial Commit

This commit is contained in:
2026-01-26 08:39:33 +00:00
parent 488d459dea
commit 44d4a01722
56 changed files with 636 additions and 1 deletions

48
Account.php Normal file
View File

@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<title>Iron Horse Game Development</title>
<meta name="description" content="Game and Software development division of Halbear Networking & Software Ltd">
<meta name="keywords" content="Software, Account, Login, Signup, 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">
</head>
<body>
<div class="Content">
<div style="background-image: url('SiteAssets/FrugerImage.png');" class="ContentPage">
<div class="ContentWindow" style="margin-left: 10vh; margin-top: 17vh; height: 75%; width: 30%">
<div style="display: flex; flex-direction: column; align-content: center; justify-content: space-between; align-items: center;">
<a class="Title">Temporarily Unavailable</a>
<a style="margin-left:5vh;margin-right:5vh;" class="WhiteContentFont">Due to ongoing development work with the parent site, Halbear.net, account services are currently unavailable</a>
</div>
<div></div>
</div>
</div>
<div style="height: 20vh; width: 100%; display: flex; flex-direction: row; align-content: space-between; justify-content: space-between">
<div style="height: 100%; width: 40%; display: flex; flex-direction: column; align-content: space-evenly; justify-content: space-evenly; ">
<a style="font-family: 'Boldonse', system-ui; font-size: 1.5vh;margin-top: 2vh;margin-left: 5vh; color: white">©Halbear Networking & Software Ltd 2025</a>
<a style="font-family: 'Boldonse', system-ui; font-size: 1vh;margin-left: 5vh;color: white; cursor: pointer" onclick="this.href='https://halbear.net/'">Visit Halbear.net</a>
<a style="font-family: 'Boldonse', system-ui; font-size: 1vh;margin-bottom: 2vh;margin-left: 5vh;color: white; cursor: pointer;" onclick="this.href='https://halbear.net/termsAndConditions.html'">HalbearNet User Agreement</a>
</div>
<div style="height: 100%; display: flex; flex-direction: column; align-content: space-evenly; justify-content: space-evenly; ">
<a style="font-family: 'Boldonse', system-ui; font-size: 1vh; margin-top: 2vh;margin-right: 5vh; color: white">Support</a>
<a style="font-family: 'Boldonse', system-ui; font-size: 1vh;margin-right: 5vh;color: white">Forums</a>
<a style="font-family: 'Boldonse', system-ui; font-size: 1vh;margin-bottom: 2vh;margin-right: 5vh;color: white">User Agreement</a>
</div>
</div>
</div>
<?php
$Page = "Account";
require_once("Hotbar.php");
?>
<script>
var Button = document.getElementById("<?php echo($Page); ?>");
Button.onclick = function(){document.location.href='index.php';};
Button.innerHTML = "Home";
</script>
</body>
</html>