Fix: tab order for login page

This commit is contained in:
Aroy-Art 2025-03-17 10:22:09 +01:00
parent 8858061848
commit 19bde0731a
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

@ -75,6 +75,7 @@ export function LoginForm({
required
value={username}
onChange={(e) => setUsername(e.target.value)}
tabIndex={1}
/>
</div>
<div className="grid gap-2">
@ -83,6 +84,7 @@ export function LoginForm({
<a
href="#"
className="ml-auto text-sm underline-offset-2 hover:underline"
tabIndex={4}
>
Forgot your password?
</a>
@ -93,9 +95,10 @@ export function LoginForm({
required
value={password}
onChange={(e) => setPassword(e.target.value)}
tabIndex={2}
/>
</div>
<Button type="submit" className="w-full bg-primary">
<Button type="submit" className="w-full bg-primary" tabIndex={3}>
{loading ? "Logging in..." : "Login"}
</Button>
<div className="text-center text-sm">