Skip to content
Snippets Groups Projects

Sign up/Log in form nest into AuthUser

Merged Defendi Alberto requested to merge SignUp into master
2 files
+ 84
0
Compare changes
  • Side-by-side
  • Inline
Files
2
Wrapper for any input field
```js
import { SubmitHandler, useForm } from 'react-hook-form';
const { control } = useForm();
<InputField
name="password"
control={control}
rules={{
minLength: 8,
maxLength: 60,
required: {
value: true,
message: 'Insert valid password',
},
}}
label="Password"
error={false}
errorMessage="Insert valid password"
/>
```
Loading