18 lines
365 B
PHTML
18 lines
365 B
PHTML
<?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';
|
|
?>
|