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:
21
ForumWindow.php
Normal file
21
ForumWindow.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
if(isset($_GET['desktop'])) $_SESSION['desktop'] = $_GET['desktop'];
|
||||
if(isset($_GET['fullscreen']) && $_GET['fullscreen']){
|
||||
$Page = "Forum";
|
||||
require_once("Hotbar.php");
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Halbear.Net</title>
|
||||
<link rel="stylesheet" href="default.css">
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
var Button = document.getElementById("ForumBtn");
|
||||
Button.onclick = function(){document.location.href='index.php';};
|
||||
Button.children[0].textContent = "Home";
|
||||
</script>
|
||||
</body>
|
||||
Reference in New Issue
Block a user