@@ -198,6 +199,7 @@ const RegisterEmail = ({
name={"termsAndConditions"}
onChange={(e) => setFormData({ ...formData, termsAndConditions: e.target.checked })}
value={termsAndConditions}
+ autoComplete="off"
/>
I agree to all statements included in
@@ -236,6 +238,7 @@ const VerifyCode = ({ code, onChange, onSubmitVerifyCode, isUserLoading }) => (
placeholder={"Code"}
onChange={onChange}
aria-label={"Code"}
+ autoComplete="off"
/>
{!isUserLoading ? (
@@ -265,6 +268,7 @@ const AddUserData = ({ name, username, password, password2, onChange, onSubmitUs
placeholder="Full Name"
onChange={onChange}
aria-label="name"
+ autoComplete="off"
/>
@@ -279,6 +283,7 @@ const AddUserData = ({ name, username, password, password2, onChange, onSubmitUs
placeholder="Username"
onChange={onChange}
aria-label="Username"
+ autoComplete="off"
/>
@@ -293,6 +298,7 @@ const AddUserData = ({ name, username, password, password2, onChange, onSubmitUs
placeholder={"Password"}
onChange={onChange}
aria-label={"Password"}
+ autoComplete="off"
/>
@@ -307,6 +313,7 @@ const AddUserData = ({ name, username, password, password2, onChange, onSubmitUs
placeholder={"Confirm Password"}
onChange={onChange}
aria-label={"Confirm Password"}
+ autoComplete="off"
/>
diff --git a/src/pages/ResetPassword.jsx b/src/pages/ResetPassword.jsx
index 4e4e4a1c..ab145373 100644
--- a/src/pages/ResetPassword.jsx
+++ b/src/pages/ResetPassword.jsx
@@ -102,7 +102,7 @@ const ResetPassword = () => {
placeholder="Password"
onChange={onChange}
aria-label="Password"
- autoComplete={null}
+ autoComplete="off"
/>
@@ -117,7 +117,7 @@ const ResetPassword = () => {
placeholder="Confirm Password"
onChange={onChange}
aria-label="Password"
- autoComplete={null}
+ autoComplete="off"
/>