v1.6.0: Admin-Passwort-Reset, Login per Nachname, Default-PW-Sperre

This commit is contained in:
2026-05-11 12:20:44 +02:00
parent 4d84b8f718
commit 0ea960259c
12 changed files with 195 additions and 15 deletions
+2 -2
View File
@@ -27,7 +27,7 @@ export default function LoginPage() {
<form action={loginAction} className="space-y-5">
<div>
<label htmlFor="username" className="block text-sm font-medium text-gray-700 mb-1">
Kürzel
Kürzel oder Nachname
</label>
<input
id="username"
@@ -36,7 +36,7 @@ export default function LoginPage() {
required
autoComplete="off"
className="w-full px-3 py-2 border-2 border-gray-400 rounded-lg bg-white text-gray-900 focus:border-blue-500 focus:outline-none text-sm"
placeholder="Kürzel"
placeholder="Kürzel oder Nachname"
disabled={isPending}
/>
</div>