Fix login tabindex

This commit is contained in:
Chocobozzz 2024-09-27 15:09:57 +02:00
parent ef9aecc684
commit ee3e69f110
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@
<div>
<label i18n for="username">Username or email address</label>
<input
type="text" id="username" i18n-placeholder placeholder="Example: john@example.com" required tabindex="1"
type="text" id="username" i18n-placeholder placeholder="Example: john@example.com" required
formControlName="username" class="form-control" [ngClass]="{ 'input-error': formErrors['username'] }" myAutofocus
autocomplete="username"
>
@ -70,7 +70,7 @@
<my-input-text
formControlName="password" inputId="password" i18n-placeholder placeholder="Password"
[formError]="formErrors['password']" autocomplete="current-password" [tabindex]="2"
[formError]="formErrors['password']" autocomplete="current-password"
></my-input-text>
</div>
</ng-container>