Adding info for Login In

This commit is contained in:
Belen Curcio
2020-10-25 23:43:15 -03:00
parent 50c50b6d53
commit 1a3a683d6e
7 changed files with 89 additions and 38 deletions

View File

@@ -19,7 +19,17 @@ const Input: React.FC<Props> = (props) => {
return null
}
return <input className={rootClassName} onChange={handleOnChange} {...rest} />
return (
<input
className={rootClassName}
onChange={handleOnChange}
autoComplete="off"
autoCorrect="off"
autoCapitalize="off"
spellCheck="false"
{...rest}
/>
)
}
export default Input