first commit

This commit is contained in:
2026-04-11 18:57:00 +02:00
commit 58bcc8f0f3
29 changed files with 3290 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<section class="auth-shell">
<div class="auth-card glass-panel">
<p class="eyebrow">Erste Einrichtung</p>
<h1>Mood initialisieren</h1>
<p class="auth-copy">Lege den ersten Admin-Account an. Danach ist die Anwendung sofort geschuetzt und weitere Accounts koennen spaeter in den Optionen erstellt werden.</p>
<form method="post" action="/setup" class="stack-form">
<?= csrf_field() ?>
<label>
<span>Admin-Benutzername</span>
<input type="text" name="username" autocomplete="username" required>
</label>
<label>
<span>Passwort</span>
<input type="password" name="password" autocomplete="new-password" minlength="10" required>
</label>
<label>
<span>Passwort wiederholen</span>
<input type="password" name="password_confirm" autocomplete="new-password" minlength="10" required>
</label>
<button class="primary-button" type="submit">Setup abschliessen</button>
</form>
</div>
</section>