Skip to content

Instantly share code, notes, and snippets.

@joaovitorzv
Last active April 24, 2020 16:57
Show Gist options
  • Save joaovitorzv/27ccf2eb2b5ee6588712049c7a2dfd79 to your computer and use it in GitHub Desktop.
Save joaovitorzv/27ccf2eb2b5ee6588712049c7a2dfd79 to your computer and use it in GitHub Desktop.
<Formik
validationSchema={validationSchema}
initialValues={{
name: '',
email: '',
password: '',
confirm_password: '',
}}
onSubmit={handleSubmit}
>
<form onSubmit={handleSubmit}>
<input type="text" placeholder="Full name"/>
<input type="text" placeholder="Email" />
<input type="password" placeholder="Password" />
<input type="password" placeholder="Confirm password" />
<button type="submit">
Create account
</button>
</form>
</Formik>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment