This commit is contained in:
2025-06-25 10:19:06 +02:00
5 changed files with 62 additions and 9 deletions

View File

@@ -0,0 +1,17 @@
<?php
include dirname(__DIR__).'/header.phtml';
?>
<?php if ($user): ?>
<p>Hallo, <?= htmlspecialchars($user['vorname']) ?> <?= htmlspecialchars($user['name']) ?>!</p>
<?php else: ?>
<p>Benutzerdaten konnten nicht geladen werden.</p>
<?php endif; ?>
<h1>Sie haben sich erfolgreich angemeldet</h1>
<?php
include dirname(__DIR__).'/footer.phtml';
?>