Fix: tab order for login page
This commit is contained in:
parent
8858061848
commit
19bde0731a
1 changed files with 4 additions and 1 deletions
|
@ -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">
|
||||
|
|
Loading…
Add table
Reference in a new issue