first commit

This commit is contained in:
2026-04-12 10:36:13 +02:00
commit 21014c246e
22 changed files with 2461 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{% extends "base.html" %}
{% block title %}Anmelden | Nouri{% endblock %}
{% block content %}
<section class="auth-shell">
<div class="auth-card">
<p class="eyebrow">Willkommen zurueck</p>
<h1>Ruhig wieder einsteigen</h1>
<p class="lead">Nouri hilft beim Erinnern, Sichtbar-Machen und Planen. Ohne Zahlen, ohne Druck.</p>
<form method="post" class="stack-form">
{{ csrf_input() }}
<label>
Benutzername
<input type="text" name="username" autocomplete="username" required>
</label>
<label>
Passwort
<input type="password" name="password" autocomplete="current-password" required>
</label>
<button type="submit">Anmelden</button>
</form>
</div>
</section>
{% endblock %}