This project is a simple Registration Form built using *HTML, **CSS, and *JavaScript. The form collects user details such as name, email, password, and other necessary information, and validates the inputs before submission.
- Input fields: Name, Email, Password, and Confirm Password
- Real-time form validation using JavaScript
- Responsive design for different screen sizes
- CSS styling for an enhanced user experience
bash . βββ index.html # HTML structure of the form βββ style.css # CSS file for styling the form βββ script.js # JavaScript file for form validation
First, clone the repository to your local machine using the command below:
bash git clone https://github.com/Arimellidivya/Registration-Form-using-javascript
Navigate into the project folder:
bash cd registration-form
You can open the index.html file directly in any modern web browser to view the registration form.
- HTML5: Provides the structure of the form.
- CSS3: Handles the styling and layout.
- JavaScript: Performs form validation and input handling.
The JavaScript validation in this form includes:
- Ensuring all fields are filled out.
- Checking that the email is in a valid format.
- Validating that the password and confirm password fields match.
- Providing error messages for incorrect inputs.
- Fork this repository.
- Create a branch: git checkout -b feature-branch-name.
- Make your changes and commit them: git commit -m 'Add some feature'.
- Push to the branch: git push origin feature-branch-name.
- Submit a pull request.
