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() {
57
57
{ t ( 'LoginForm.Password' ) }
58
58
</ label >
59
59
< 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
+ />
60
68
< button
61
69
className = "form__eye__icon"
62
70
type = "button"
@@ -69,14 +77,6 @@ function LoginForm() {
69
77
< AiOutlineEye />
70
78
) }
71
79
</ 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
- />
80
80
</ div >
81
81
{ field . meta . touched && field . meta . error && (
82
82
< span className = "form-error" aria-live = "polite" >
You can’t perform that action at this time.
0 commit comments