| Server IP : 72.60.21.38 / Your IP : 216.73.216.25 Web Server : LiteSpeed System : Linux uk-fast-web1372.main-hosting.eu 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64 User : u390967363 ( 390967363) PHP Version : 8.2.30 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u390967363/public_html/crm/ |
Upload File : |
<?php
session_start();
if (!isset($_SESSION['is_super_admin']) || $_SESSION['is_super_admin'] !== true) {
header("HTTP/1.0 404 Not Found");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>404 - Lost in Space</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
margin: 0;
overflow: hidden;
background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
font-family: 'Segoe UI', sans-serif;
}
.stars {
position: absolute;
width: 100%;
height: 100%;
background: transparent;
z-index: 0;
}
.star {
position: absolute;
background: white;
border-radius: 50%;
opacity: 0.8;
animation: twinkle 2s infinite ease-in-out;
}
@keyframes twinkle {
0%, 100% { opacity: 0.2; transform: scale(1); }
50% { opacity: 1; transform: scale(1.5); }
}
.spaceman {
font-size: 5rem;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
</style>
</head>
<body class="text-white flex flex-col items-center justify-center h-screen p-6 space-y-6 relative z-10">
<!-- Stars -->
<div class="stars" id="star-container"></div>
<!-- Spaceman & Message -->
<div class="z-10 text-center">
<div class="spaceman">๐จโ๐</div>
<h1 class="text-5xl font-bold text-blue-400 mt-4">404: Lost in Space</h1>
<p class="text-lg text-gray-300 max-w-md mt-4">
The spaceman looked around. Stars. Silence. Nothingness. <br>
Whatever you were looking for doesnโt seem to exist in this galaxy.
</p>
<a href="dashboard_1.php" class="mt-6 inline-block bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-full text-sm font-medium">
Take me back to base ๐ธ
</a>
</div>
<script>
// Generate 100 stars
const container = document.getElementById('star-container');
for (let i = 0; i < 100; i++) {
const star = document.createElement('div');
star.className = 'star';
const size = Math.random() * 3;
star.style.width = `${size}px`;
star.style.height = `${size}px`;
star.style.top = `${Math.random() * 100}%`;
star.style.left = `${Math.random() * 100}%`;
star.style.animationDuration = `${Math.random() * 3 + 2}s`;
container.appendChild(star);
}
</script>
</body>
</html>
<?php
exit();
}
?>