Skip to content

Functional & Responsive Sign Up Form which takes to my website when you click the submit buttons

License

Notifications You must be signed in to change notification settings

Pranav-Jadhav09/Signup-Forms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub repo size Twitter Follow



Sign Up Form

This Repo Contains the Forms projects made while learning JavaScript. Has Validations, Completely Responsive.

➥ Live Demo


Validations

Email Validation

  • Pattern: ^[^ ]+@[^ ]+.[a-z]{2,3}$

  • Description: Validates that the input adheres to a standard email format.

Password Validation

  • Pattern: ^(?=.[a-z])(?=.[A-Z])(?=.\d)(?=.[@$!%?&])[A-Za-z\d@$!%?&]{8,}$

  • Description: Ensures that the password:

  • Contains at least one lowercase letter

  • Contains at least one uppercase letter

  • Contains at least one digit

  • Contains at least one special character from [@, $, !, %, *, ?, or &]

  • Is at least 8 characters long

Hide and Show Password

  • The application provides an option to hide/show the password input text.

Confirm Password Validation

  • This project does not currently implement confirm password validation, but you can extend the existing pattern for this purpose.
  • These validations are integrated into the project by associating the validation functions with relevant form events such as form submission and keyup events for real-time feedback to the user.

Prerequisites

Before you begin, ensure you have met the following requirements:

  • Git must be installed on your operating system.

Run Locally

To run FORMS, run this command on your git bash:

Linux and macOS:

sudo git clone https://github.com/Pranav-Jadhav09/signup-form.git

Windows:

git clone https://github.com/Pranav-Jadhav09/signup-form.git

License

MIT