This commit is contained in:
2026-02-03 09:18:15 +01:00
parent 13efe9406c
commit dc427490a5
42 changed files with 5104 additions and 65 deletions

View File

@@ -103,7 +103,14 @@ $partialsPath = __DIR__ . '/../src/partials';
<div class="space-bg" aria-hidden="true"></div>
<div class="container">
<div class="app">
<div class="auth-view" id="authView" hidden>
<?php include $partialsPath . '/auth-login.php'; ?>
<?php include $partialsPath . '/auth-register-step1.php'; ?>
<?php include $partialsPath . '/auth-register-step2.php'; ?>
<?php include $partialsPath . '/auth-register-step3.php'; ?>
</div>
<div class="app" id="gameView">
<!-- LINKS: Sidebar -->
<aside class="sidebar" aria-label="Seitenleiste">
@@ -132,6 +139,7 @@ $partialsPath = __DIR__ . '/../src/partials';
🔔 <span class="badge" id="notifBadge">3</span>
</button>
<button class="btn btn-primary" type="button" onclick="toast('success','Beacon','Signal empfangen ✅')">Test Toast</button>
<button class="btn" type="button" id="logoutBtn">Logout</button>
</div>
</div>
@@ -211,6 +219,14 @@ $partialsPath = __DIR__ . '/../src/partials';
</div>
<?php include $partialsPath . '/site.php'; ?>
<section class="card inner panel" id="queuePanel" style="margin-top:14px;">
<h2 class="h2">Bauqueue (Live)</h2>
<div class="muted">Slots: <span id="queueSlots">0</span></div>
<ul id="queueList">
<li class="muted">Keine aktiven Baujobs.</li>
</ul>
</section>
</main>
<!-- Footer -->