We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54244cc commit 6e0823dCopy full SHA for 6e0823d
src/app/auth/auth.component.html
@@ -13,7 +13,7 @@
13
<form class="p-5 jumbotron" #authForm="ngForm" (ngSubmit)="onSubmit(authForm)" *ngIf="!isLoading">
14
<div class="form-group col-8">
15
<label for="email">{{'AUTH.EMAIL' | translate}}</label>
16
- <input type="username" id="username" class="form-control" ngModel name="username" required email
+ <input type="username" id="username" class="form-control" ngModel name="username" required email autofocus
17
[ngClass]="{'is-invalid' : formFailedSubmit && errorFields.includes('username'), 'is-valid' : formFailedSubmit && !errorFields.includes('username')}">
18
</div>
19
@@ -31,4 +31,4 @@
31
32
</form>
33
34
-</div>
+</div>
0 commit comments