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:
14
Forum.php
14
Forum.php
@@ -1,3 +1,6 @@
|
||||
<?php
|
||||
session_start();
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
@@ -17,8 +20,13 @@ require_once("Hotbar.php");
|
||||
</script>
|
||||
<script src="WindowManager.js"></script>
|
||||
<script src="AlignDesktopApps.js"></script>
|
||||
<script>
|
||||
OpenApp(document.querySelectorAll('.NothingHereIcon')[0], true, 50, 45)
|
||||
</script>
|
||||
<?php
|
||||
if(!isset($_SESSION["logged_in"]) || !$_SESSION["logged_in"]) {
|
||||
echo("
|
||||
<script>OpenApp(document.querySelectorAll('.LoggedOutIcon')[0], true, 50, 45); </script >");
|
||||
}else{
|
||||
echo("<script>OpenApp(document.querySelectorAll('.ForumAppIcon')[0], true, 50, 45);</script >");
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user