Skip to content

Commit

Permalink
autocomplete attributes modified for email & input
Browse files Browse the repository at this point in the history
  • Loading branch information
CrisGuzmanS committed Jan 19, 2024
1 parent 1dc7aee commit 090c445
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[formGroup]="form" novalidate>
<label class="sr-only">{{"login.form.email" | translate}}</label>
<input [attr.aria-label]="'login.form.email' |translate"
autocomplete="off"
autocomplete="username"
autofocus
class="form-control form-control-lg position-relative"
formControlName="email"
Expand All @@ -13,7 +13,7 @@
[attr.data-test]="'email' | dsBrowserOnly">
<label class="sr-only">{{"login.form.password" | translate}}</label>
<input [attr.aria-label]="'login.form.password' |translate"
autocomplete="off"
autocomplete="current-password"
class="form-control form-control-lg position-relative mb-3"
placeholder="{{'login.form.password' | translate}}"
formControlName="password"
Expand Down

0 comments on commit 090c445

Please sign in to comment.