Files
HalbearNetDesktopSite/Contact.php
2026-03-03 08:34:46 +00:00

23 lines
499 B
PHP

<?php
$UniqueSession = false;
require("Hidden/Security/StartSession.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Halbear.Net</title>
<link rel="stylesheet" href="default.css">
</head>
<body>
<?php
$Page = "Contact";
require_once("Hotbar.php");
?>
<script>
var Button = document.getElementById("ContactBtn");
Button.onclick = function(){document.location.href='index.php';};
Button.children[0].textContent = "Home";
</script>
</body>
</html>