Create a Signup Page
The signup page is quite similar to the login page that we just created. But it has a couple of key differences. When we sign the user up, AWS Cognito sends them a confirmation code via email. And we need to authenticate the new user once it’s been confirmed.
And so the signup flow will look something like this:
-
The user types in their email, password, and confirms their password.
-
We sign them up using AWS Cognito and get a user object in return.
-
We then render a form to accept the confirmation code that AWS Cognito has emailed to them.
-
We send the confirmation code to AWS Cognito.
-
We authenticate the user and get a user token in return.
-
Finally, we update the app state with the user token.
So let’s get started by creating the basic sign up form first.
If you liked this post, please subscribe to our newsletter and give us a star on GitHub.
For help and discussion
Comments on this chapter