Skip to content

Commit

Permalink
Specify to autocomplete current-password
Browse files Browse the repository at this point in the history
As suggested by Chrome devtools
  • Loading branch information
PowerKiKi committed Aug 23, 2024
1 parent 1d43937 commit f030ab6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
matInput
formControlName="email"
autofocus
autocomplete="username"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
Expand All @@ -28,10 +29,11 @@
<mat-label>Mot de passe</mat-label>
<input
matInput
formControlName="password"
autocomplete="current-password"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
formControlName="password"
type="password"
(keydown.enter)="maybeConfirm()"
/>
Expand Down

0 comments on commit f030ab6

Please sign in to comment.