Skip to content

Commit 63364d5

Browse files
Merge pull request #8 from kingscode/feature/add-tab-index-to-login
added tab index for passwork login
2 parents 9838197 + b82d5ca commit 63364d5

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • generator/templates/Authorisation/src/views

generator/templates/Authorisation/src/views/Login.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
:rules="[(v) => !!v || 'E-Mail is verplicht']"
1717
label="E-Mail"
1818
v-model="username"
19+
tabindex="1"
1920
></v-text-field>
2021
<v-text-field
2122
:append-icon="showpassword ? 'fa-eye-slash' : 'fa-eye'"
@@ -24,6 +25,7 @@
2425
@click:append="showpassword = !showpassword"
2526
label="Wachtwoord"
2627
v-model="password"
28+
tabindex="2"
2729
></v-text-field>
2830
</template>
2931
<div class="text-xs-center" v-else>
@@ -38,7 +40,7 @@
3840
<v-card-actions>
3941
<v-spacer></v-spacer>
4042
<v-btn @click="handlePasswordForgotten()" color="accent" flat>Wachtwoord vergeten</v-btn>
41-
<v-btn @click="handleLogin()" type="submit" color="accent">Inloggen</v-btn>
43+
<v-btn @click="handleLogin()" tabindex="3" type="submit" color="accent">Inloggen</v-btn>
4244
</v-card-actions>
4345
</v-card>
4446
</v-form>

0 commit comments

Comments
 (0)