Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sahilcreate/form-validation-example
https://github.com/sahilcreate/form-validation-example
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sahilcreate/form-validation-example
- Owner: Sahilcreate
- License: mit
- Created: 2024-08-07T10:40:21.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-08T17:36:44.000Z (5 months ago)
- Last Synced: 2024-08-09T16:09:53.929Z (5 months ago)
- Language: JavaScript
- Homepage: https://sahilcreate.github.io/Form-validation-example/
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Form Validation Example
## ABOUT
This project is a part of lesson [Form Validation with JS](https://www.theodinproject.com/lessons/node-path-javascript-form-validation-with-javascript). We were asked to tinker with our [Library Project Form](https://github.com/Sahilcreate/library-project) and make new form with just JS validation.[Click here](https://sahilcreate.github.io/Form-validation-example/) to view live.
![Live Image](./form-validation-project.png)
## OBJECTIVES
- [x] It should use live inline validation to inform the user whether a field is properly filled in or not
- [x] The form doesn’t need to actually submit, but you should give an error message if the button is pushed with any active errors or unfilled required fields
- [x] make sure the element has the novalidate attribute which will allow you to do all of your validation in your JavaScript files