fehlende templates

This commit is contained in:
Illia Hromovoi 2025-06-25 10:01:42 +02:00
parent 3d246ccb60
commit 3ac0217f9a
2 changed files with 28 additions and 0 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';
?>

View File

@ -0,0 +1,11 @@
<?php
include dirname(__DIR__).'/header.phtml';
?>
<h1>Sie haben sich erfolgreich registriert</h1>
<?php
include dirname(__DIR__).'/footer.phtml';
?>