add missing autoComplete attribute on password fields
This commit is contained in:
@@ -33,8 +33,6 @@ const ArrayFieldType = (props) => {
|
||||
permissions,
|
||||
admin: {
|
||||
readOnly,
|
||||
style,
|
||||
width,
|
||||
},
|
||||
} = props;
|
||||
|
||||
|
||||
@@ -93,6 +93,7 @@ const ForgotPassword = () => {
|
||||
<Email
|
||||
label="Email Address"
|
||||
name="email"
|
||||
autoComplete="email"
|
||||
required
|
||||
/>
|
||||
<FormSubmit>Submit</FormSubmit>
|
||||
|
||||
@@ -84,6 +84,7 @@ const Login = () => {
|
||||
error="password"
|
||||
label="Password"
|
||||
name="password"
|
||||
autoComplete="off"
|
||||
required
|
||||
/>
|
||||
<Link to={`${admin}/forgot`}>
|
||||
|
||||
@@ -73,6 +73,7 @@ const ResetPassword = () => {
|
||||
error="password"
|
||||
label="New Password"
|
||||
name="password"
|
||||
autoComplete="off"
|
||||
required
|
||||
/>
|
||||
<ConfirmPassword />
|
||||
|
||||
Reference in New Issue
Block a user