From the course: Build Modern Web Apps with React, Hooks, State Management, and APIs Using Vite or Next.js

Unlock this course with a free trial

Join today to access over 25,200 courses taught by industry experts.

Signup form project: Introduction

Signup form project: Introduction

Hello and welcome back, in this video we are going to see how we can make a signup slash login form with advanced validations. Let's discuss what our goal is, we are looking to build a signup and login form in react. By signup and login, I mean that this one form can be transformed into login and signup as well. We are going to use the react-hook form that we have learned for state and validations. After that, we will be choosing either Zord or Yep library for schema-based rules. And we will also be handling the loading while calling the API for signup as well as the error handling for showing up the error messages. The core features of our signup and login form are going to include an e-mail and password based validation. By providing the e-mail and password, user can either log in or sign up. We are also going to show the error messages under the input fields. And we are going to disable the submit button when the validations are a failure. And once all the validation successes…

Contents