Files
nouri-App/nouri/templates/auth/login.html
T

29 lines
1.0 KiB
HTML

{% extends "base.html" %}
{% block title %}Anmelden | Nouri{% endblock %}
{% block content %}
<section class="auth-shell">
<div class="auth-card">
<p class="eyebrow">Willkommen zurück</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>
<label class="inline-check">
<input type="checkbox" name="remember_me" value="1">
<span>Angemeldet bleiben</span>
</label>
<button type="submit">Anmelden</button>
</form>
</div>
</section>
{% endblock %}