File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ const submit = () => {
44
44
type =" email"
45
45
required
46
46
autofocus
47
- tabindex =" 1"
47
+ : tabindex =" 1"
48
48
autocomplete =" email"
49
49
v-model =" form.email"
50
50
@@ -55,28 +55,28 @@ const submit = () => {
55
55
<div class =" grid gap-2" >
56
56
<div class =" flex items-center justify-between" >
57
57
<Label for =" password" >Password</Label >
58
- <TextLink v-if =" canResetPassword" :href =" route('password.request')" class =" text-sm" tabindex =" 5" > Forgot password? </TextLink >
58
+ <TextLink v-if =" canResetPassword" :href =" route('password.request')" class =" text-sm" : tabindex =" 5" > Forgot password? </TextLink >
59
59
</div >
60
60
<Input
61
61
id =" password"
62
62
type =" password"
63
63
required
64
- tabindex =" 2"
64
+ : tabindex =" 2"
65
65
autocomplete =" current-password"
66
66
v-model =" form.password"
67
67
placeholder =" Password"
68
68
/>
69
69
<InputError :message =" form.errors.password" />
70
70
</div >
71
71
72
- <div class =" flex items-center justify-between" tabindex =" 3" >
72
+ <div class =" flex items-center justify-between" : tabindex =" 3" >
73
73
<Label for =" remember" class =" flex items-center space-x-3" >
74
- <Checkbox id =" remember" v-model:checked =" form.remember" tabindex =" 4" />
74
+ <Checkbox id =" remember" v-model:checked =" form.remember" : tabindex =" 4" />
75
75
<span >Remember me</span >
76
76
</Label >
77
77
</div >
78
78
79
- <Button type =" submit" class =" mt-4 w-full" tabindex =" 4" :disabled =" form.processing" >
79
+ <Button type =" submit" class =" mt-4 w-full" : tabindex =" 4" :disabled =" form.processing" >
80
80
<LoaderCircle v-if =" form.processing" class =" h-4 w-4 animate-spin" />
81
81
Log in
82
82
</Button >
Original file line number Diff line number Diff line change @@ -30,13 +30,13 @@ const submit = () => {
30
30
<div class =" grid gap-6" >
31
31
<div class =" grid gap-2" >
32
32
<Label for =" name" >Name</Label >
33
- <Input id =" name" type =" text" required autofocus tabindex =" 1" autocomplete =" name" v-model =" form.name" placeholder =" Full name" />
33
+ <Input id =" name" type =" text" required autofocus : tabindex =" 1" autocomplete =" name" v-model =" form.name" placeholder =" Full name" />
34
34
<InputError :message =" form.errors.name" />
35
35
</div >
36
36
37
37
<div class =" grid gap-2" >
38
38
<Label for =" email" >Email address</Label >
39
- <
Input id =
" email" type =
" email" required tabindex =
" 2" autocomplete =
" email" v-model =
" form.email" placeholder =
" [email protected] " />
39
+ <
Input id =
" email" type =
" email" required : tabindex=
" 2" autocomplete =
" email" v-model =
" form.email" placeholder =
" [email protected] " />
40
40
<InputError :message =" form.errors.email" />
41
41
</div >
42
42
@@ -46,7 +46,7 @@ const submit = () => {
46
46
id =" password"
47
47
type =" password"
48
48
required
49
- tabindex =" 3"
49
+ : tabindex =" 3"
50
50
autocomplete =" new-password"
51
51
v-model =" form.password"
52
52
placeholder =" Password"
@@ -60,7 +60,7 @@ const submit = () => {
60
60
id =" password_confirmation"
61
61
type =" password"
62
62
required
63
- tabindex =" 4"
63
+ : tabindex =" 4"
64
64
autocomplete =" new-password"
65
65
v-model =" form.password_confirmation"
66
66
placeholder =" Confirm password"
@@ -76,7 +76,7 @@ const submit = () => {
76
76
77
77
<div class =" text-center text-sm text-muted-foreground" >
78
78
Already have an account?
79
- <TextLink :href =" route('login')" class =" underline underline-offset-4" tabindex =" 6" >Log in</TextLink >
79
+ <TextLink :href =" route('login')" class =" underline underline-offset-4" : tabindex =" 6" >Log in</TextLink >
80
80
</div >
81
81
</form >
82
82
</AuthBase >
You can’t perform that action at this time.
0 commit comments