loginview: remove reset password from tab order

This commit is contained in:
Girish Ramakrishnan
2026-03-16 16:40:54 +05:30
parent 189e3d5599
commit 676cb8810b
+1 -1
View File
@@ -159,7 +159,7 @@ onMounted(async () => {
<FormGroup>
<div style="display: flex; justify-content: space-between; align-items: baseline;">
<label for="inputPassword">{{ $t('login.password') }}</label>
<a href="/passwordreset.html" style="font-size: 0.85em;">{{ $t('login.resetPasswordAction') }}</a>
<a href="/passwordreset.html" tabindex="-1" style="font-size: 0.85em;">{{ $t('login.resetPasswordAction') }}</a>
</div>
<PasswordInput id="inputPassword" v-model="password" required/>
</FormGroup>