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
+23
View File
@@ -0,0 +1,23 @@
<section class="auth-shell">
<div class="auth-card glass-panel">
<p class="eyebrow">Geschuetzt und dateibasiert</p>
<h1>Einloggen</h1>
<p class="auth-copy">Die Eintraege liegen als Markdown-TXT-Dateien im geschuetzten Speicher und sind nur nach Login sichtbar.</p>
<form method="post" action="/login" class="stack-form">
<?= csrf_field() ?>
<label>
<span>Benutzername</span>
<input type="text" name="username" autocomplete="username" required>
</label>
<label>
<span>Passwort</span>
<input type="password" name="password" autocomplete="current-password" required>
</label>
<button class="primary-button" type="submit">Anmelden</button>
</form>
</div>
</section>