104 lines
3.4 KiB
PHP
Executable File
104 lines
3.4 KiB
PHP
Executable File
<?php
|
|
if(!defined('SAFE')) {
|
|
$page = <<<CANTTOUCH
|
|
<html>
|
|
<head>
|
|
|
|
</head>
|
|
|
|
<body style="padding:0px; margin:0px; background-color: #425b5c;">
|
|
<center><img src="../../Images/General/CantTouchThis.png" /></center>
|
|
</body>
|
|
</html>
|
|
CANTTOUCH;
|
|
|
|
die($page);
|
|
}
|
|
|
|
if(!empty($_COOKIE['MadSplashUser'])) {
|
|
$user = explode(" ", $_COOKIE['MadSplashUser']);
|
|
|
|
echo <<<SUPERNAV
|
|
<section id="SuperNav">
|
|
<div class="left" style="padding-left: 12px;">
|
|
Heyas, <a href="#">{$user[1]}</a>! You can go to your <a href="#">User CP</a> or <a href="http://localhost:8888/Resources/Scripts/PHP/Hubs/CommunityHub.php?user={$user[0]}&action=logout">logout</a>.
|
|
</div>
|
|
|
|
<div class="right">
|
|
<a class="YouTube" href="http://youtube.com/User/MadSplashTV" target="_blank"> </a>
|
|
<a class="Twitter" href="http://twitter.com/MadSplashStudio" target="_blank"> </a>
|
|
|
|
<div class="CrossNav">
|
|
<img src="../Resources/Images/Icons/General/CrossNavDark.png" style="width: 28px; height: 28px;" />
|
|
|
|
<ul>
|
|
<a href="http://therpg.madsplash.net/" target="_blank">
|
|
<li class="RPG">
|
|
<img src="../Resources/Images/Logos/TheRPG.png" style="width: 38px; float: left; margin-right: 4px; margin-top: 4px;" />
|
|
|
|
<a class="RPGLink">The RPG</a> <br />
|
|
Our up-and-coming web-and-text-based RPG. Play!
|
|
</li>
|
|
</a>
|
|
|
|
<li class="footer">
|
|
<div style="padding: 4px 8px;">
|
|
Follow us here, too: <br />
|
|
|
|
<div class="right">
|
|
<a class="YouTube" href="http://youtube.com/User/MadSplashTV" target="_blank"> </a>
|
|
<a class="Twitter" href="http://twitter.com/MadSplashStudio" target="_blank"> </a>
|
|
</div>
|
|
|
|
<div class="clear"> </div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
SUPERNAV;
|
|
} else {
|
|
echo <<<SUPERNAV
|
|
<section id="SuperNav">
|
|
<div class="left" style="padding-left: 12px;">
|
|
Hey there, Guest. You can <a href="http://localhost:8888/community/index.php?page=login">login</a>
|
|
or <a href="http://localhost:8888/community/index.php?page=register">register</a> here.
|
|
</div>
|
|
|
|
<div class="right">
|
|
<a class="YouTube" href="http://youtube.com/User/MadSplashTV" target="_blank"> </a>
|
|
<a class="Twitter" href="http://twitter.com/MadSplashStudio" target="_blank"> </a>
|
|
|
|
<div class="CrossNav">
|
|
<img src="../Resources/Images/Icons/General/CrossNavDark.png" style="width: 28px; height: 28px;" />
|
|
|
|
<ul>
|
|
<a href="http://therpg.madsplash.net/" target="_blank">
|
|
<li class="RPG">
|
|
<img src="../Resources/Images/Logos/TheRPG.png" style="width: 38px; float: left; margin-right: 4px; margin-top: 4px;" />
|
|
|
|
<a class="RPGLink">The RPG</a> <br />
|
|
Our up-and-coming web-and-text-based RPG. Play!
|
|
</li>
|
|
</a>
|
|
|
|
<li class="footer">
|
|
<div style="padding: 4px 8px;">
|
|
Follow us here, too: <br />
|
|
|
|
<div class="right">
|
|
<a class="YouTube" href="http://youtube.com/User/MadSplashTV" target="_blank"> </a>
|
|
<a class="Twitter" href="http://twitter.com/MadSplashStudio" target="_blank"> </a>
|
|
</div>
|
|
|
|
<div class="clear"> </div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
SUPERNAV;
|
|
}
|
|
?>
|