| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/arni-solutions.de/web/slots/ |
Upload File : |
<?php
require_once __DIR__ . '/includes/bootstrap.php';
$user = current_user();
$config = app_config();
$boot = [
'username' => $user['username'] ?? null,
'codeParam' => isset($_GET['room']) ? preg_replace('/[^a-f0-9]/', '', (string)$_GET['room']) : null,
];
?>
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title><?= e($config['app']['name']) ?> ยท Schiffe versenken</title>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@600;800&family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<link href="css/core.css" rel="stylesheet">
<link href="css/board.css" rel="stylesheet">
</head>
<body class="rr-body rr-dame-body">
<div class="rr-bg" id="rrBg"></div>
<header class="rr-topbar">
<a class="rr-brand" href="index.php"><span class="rr-brand-mark">โ</span><span class="rr-brand-text"><?= e($config['app']['name']) ?><small>Schiffe versenken</small></span></a>
<a class="rr-icon-btn" href="index.php" title="Lobby">๐๏ธ</a>
</header>
<main class="rr-room" id="shipsApp"></main>
<div class="rr-toasts" id="toasts"></div>
<script>window.SHIPS_BOOT = <?= json_encode($boot, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES) ?>;</script>
<script type="module" src="js/ships/ships.js"></script>
</body>
</html>