Files
nouri-App/nouri/templates/auth/setup.html
T
2026-04-12 10:36:13 +02:00

33 lines
1.2 KiB
HTML

{% extends "base.html" %}
{% block title %}Erster Start | Nouri{% endblock %}
{% block content %}
<section class="auth-shell">
<div class="auth-card">
<p class="eyebrow">Erster Start</p>
<h1>Den ersten Haushalt-Zugang anlegen</h1>
<p class="lead">Danach koennt ihr die App gemeinsam nutzen. Die Daten bleiben lokal in dieser Installation.</p>
<form method="post" class="stack-form">
{{ csrf_input() }}
<label>
Benutzername
<input type="text" name="username" autocomplete="username" required>
</label>
<label>
Anzeigename
<input type="text" name="display_name" autocomplete="name" placeholder="z. B. Heinz">
</label>
<label>
Passwort
<input type="password" name="password" autocomplete="new-password" required>
</label>
<label>
Passwort wiederholen
<input type="password" name="password_repeat" autocomplete="new-password" required>
</label>
<button type="submit">Zugang anlegen</button>
</form>
</div>
</section>
{% endblock %}