sadasd
All checks were successful
Deploy / deploy (push) Successful in 53s

This commit is contained in:
2026-08-10 20:28:45 +02:00
parent bd758f8b34
commit 5c0ecf817a
3 changed files with 3 additions and 3 deletions

View File

@@ -97,10 +97,9 @@ if (!empty($canManageSystemSettings)) {
$sectionLinks['system'] = 'System';
}
?>
<main class="section">
<main class="section section--dashboard">
<div class="container" style="display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;">
<div>
<p class="eyebrow">Mitgliederbereich</p>
<h1>Hallo, <span style="color: var(--color-primary);"><?= htmlspecialchars($profile['display_name'] ?: 'Papa', ENT_QUOTES) ?></span>!</h1>
<p class="muted">Verwalte dein Profil, Kinder, Events und Teilnahmen.</p>
</div>

View File

@@ -89,6 +89,7 @@ body {
.muted.small { font-size: 13px; }
.section { padding: 64px 0; }
.section--dashboard { padding-top: 28px; }
.section.alt { background: #ffffff; border-block: 1px solid var(--color-border); }
.section__head { display:flex; justify-content:space-between; align-items:flex-start; gap: 16px; flex-wrap: wrap; }
.section__intro { max-width: 72ch; margin: 0 auto 22px; text-align: center; }
@@ -395,6 +396,7 @@ body {
.nav-row { padding: 12px 0; }
.hero { padding: 40px 0; }
.section { padding: 48px 0; }
.section--dashboard { padding-top: 20px; }
.forum-hero,
.forum-board__head,
.forum-thread-head { grid-template-columns: 1fr; display: grid; }

View File

@@ -92,7 +92,6 @@ final class AccountPages
redirect('/verify');
}
$_SESSION['user_id'] = $res['id'];
$app->flash()->set('success', 'Erfolgreich angemeldet.');
redirect('/dashboard');
} catch (\Throwable $e) {
$error = $e->getMessage();