Skip to content

A small front-end React project that builds a website registration form with validations.

Notifications You must be signed in to change notification settings

LiatHanunu/Register-Form-Front-End-Project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Register-Form-Front-End-Project

A small front end-React project that builds a website registration form with validations.

This project demonstrated a generic registration form with front end validations that could be applied to many sorts of websites.

3 main reasons to why it's important to use front-end validations:

  • It is critical that we check user input to ensure that it fits our app standards.
  • The user receives imidiate feedback so the user gets the best user experience and app functionality.
  • Using front-end validations prevents excessive POST/PATCH requests from being made, resulting in a faster procedure with less processing because data is checked before it is transmitted to the server.

Register Form

image

Register Form with wrong input:

image

After a successful registration, the user can view the information that was entered and create another account.

This form can be added later to a website where the user can see its propfile information, and with minor adjustments, this form can be used to update user data.

image