diff --git a/front/components/forms/signupform.tsx b/front/components/forms/signupform.tsx index f43dfbc..375ec14 100644 --- a/front/components/forms/signupform.tsx +++ b/front/components/forms/signupform.tsx @@ -81,6 +81,7 @@ const LoginForm = ({ onSubmit }: SignupFormProps) => { isRequired type="text" placeholder="Katerina" + autoComplete="username-new" value={formData.username.value} onChangeText={(t) => { let error: null | string = null; @@ -104,6 +105,7 @@ const LoginForm = ({ onSubmit }: SignupFormProps) => { isRequired type="text" placeholder="lucy@er.com" + autoComplete="email" value={formData.email.value} onChangeText={(t) => { let error: null | string = null; @@ -126,7 +128,7 @@ const LoginForm = ({ onSubmit }: SignupFormProps) => { { let error: null | string = null; @@ -149,7 +151,7 @@ const LoginForm = ({ onSubmit }: SignupFormProps) => { { let error: null | string = null;