File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
client/modules/User/components Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,14 @@ function LoginForm() {
5757 { t ( 'LoginForm.Password' ) }
5858 </ label >
5959 < div className = "form__field__password" >
60+ < input
61+ className = "form__input"
62+ aria-label = { t ( 'LoginForm.PasswordARIA' ) }
63+ type = { showPassword ? 'text' : 'password' }
64+ id = "password"
65+ autoComplete = "current-password"
66+ { ...field . input }
67+ />
6068 < button
6169 className = "form__eye__icon"
6270 type = "button"
@@ -69,14 +77,6 @@ function LoginForm() {
6977 < AiOutlineEye />
7078 ) }
7179 </ button >
72- < input
73- className = "form__input"
74- aria-label = { t ( 'LoginForm.PasswordARIA' ) }
75- type = { showPassword ? 'text' : 'password' }
76- id = "password"
77- autoComplete = "current-password"
78- { ...field . input }
79- />
8080 </ div >
8181 { field . meta . touched && field . meta . error && (
8282 < span className = "form-error" aria-live = "polite" >
You can’t perform that action at this time.
0 commit comments