128 lines
2.6 KiB
PHP
128 lines
2.6 KiB
PHP
<?php
|
|
|
|
$maintenance = false;
|
|
|
|
//$_GET["sort"] = "free";
|
|
//$_GET["t"] = "davali";
|
|
|
|
|
|
$o = "";
|
|
|
|
require_once("lib.php");
|
|
$mflib = new MFLib();
|
|
|
|
require_once("elements.php");
|
|
$mfelements = new MFElements();
|
|
|
|
$actual_link = $mflib->getLink();
|
|
|
|
$mflib->limitperpage = 15;
|
|
|
|
$mflib->setCookie();
|
|
session_start();
|
|
$mflib->initialize();
|
|
|
|
$wishlistArray = $mflib->dataGetWishlist();
|
|
|
|
if (!isset($_GET["p"])) $_GET["p"] = 1;
|
|
|
|
$o .= "<html>";
|
|
$o .= $mfelements->printHead($wishlistArray);
|
|
|
|
$o .= "<body id=\"body\">";
|
|
$o .= $mfelements->printSiteHeader();
|
|
|
|
$o .= '
|
|
<div class="row-main">
|
|
<div class="column-main col1" onclick="window.location = \'/avatar-assets\'">
|
|
<a href="/avatar-assets/">Avatar Assets</a>
|
|
</div>
|
|
<div class="column-main col2" onclick="window.location = \'/avatar-bases\'">
|
|
<a href="/avatar-bases/">Avatar Bases</a>
|
|
</div>
|
|
<div class="column-main col3" onclick="window.location = \'/avatars\'">
|
|
<a href="/avatars/">Prebuild Avatars</a>
|
|
</div>
|
|
<div class="column-main col4" onclick="window.location = \'/worlds\'">
|
|
<a href="/worlds/">Worlds</a>
|
|
</div>
|
|
</div>';
|
|
|
|
$o .= $mfelements->printNSFWpromt($actual_link);
|
|
|
|
$o .= $mfelements->printJSLoginVar();
|
|
$o .= $mfelements->printScriptSources();
|
|
|
|
$o .= "</body></html>";
|
|
|
|
|
|
if ($maintenance) {
|
|
echo "";
|
|
} else {
|
|
echo $o;
|
|
die();
|
|
}
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Maintenance - MFGames.net</title>
|
|
<style>
|
|
@font-face{
|
|
font-family: orifont;
|
|
src: url(https://mfgames.net/assets/fonts/LEVIBRUSH.TTF);
|
|
}
|
|
|
|
@font-face{
|
|
font-family: rubik;
|
|
src: url(https://mfgames.net/assets/fonts/Rubik-VariableFont_wght.ttf);
|
|
}
|
|
|
|
head, body {
|
|
height: 100%;
|
|
margin: 0px;
|
|
background-color: #121212 !important;
|
|
}
|
|
|
|
div {
|
|
|
|
}
|
|
|
|
h2 {
|
|
font-family: orifont;
|
|
color: #ffffff;
|
|
font-size: 50pt;
|
|
}
|
|
|
|
p {
|
|
font-family: orifont;
|
|
color: #aaa;
|
|
font-size: 30pt;
|
|
}
|
|
|
|
.centered{
|
|
position:absolute;
|
|
text-align: center;
|
|
width:500px;
|
|
height:300px;
|
|
left:50%;
|
|
top:50%;
|
|
margin-left:-250px;
|
|
margin-top:-150px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="centered">
|
|
<h2>MFGames.net</h2>
|
|
<p>Currently Under Construction</p>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|