25 lines
853 B
HTML
25 lines
853 B
HTML
{% 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 %}
|