add missing autoComplete attribute on password fields

This commit is contained in:
Elliot DeNolf
2020-10-09 12:06:29 -04:00
parent bb8a04dd7b
commit 8ae7457a3f
4 changed files with 3 additions and 2 deletions

View File

@@ -33,8 +33,6 @@ const ArrayFieldType = (props) => {
permissions,
admin: {
readOnly,
style,
width,
},
} = props;

View File

@@ -93,6 +93,7 @@ const ForgotPassword = () => {
<Email
label="Email Address"
name="email"
autoComplete="email"
required
/>
<FormSubmit>Submit</FormSubmit>

View File

@@ -84,6 +84,7 @@ const Login = () => {
error="password"
label="Password"
name="password"
autoComplete="off"
required
/>
<Link to={`${admin}/forgot`}>

View File

@@ -73,6 +73,7 @@ const ResetPassword = () => {
error="password"
label="New Password"
name="password"
autoComplete="off"
required
/>
<ConfirmPassword />