Building Form With Javascript
In the previous lesson, i created a form with only using HTML and CSS. But now, i've plugged javascript into the form to handle its logic. Form Aunthenticator My first project, i created an authentication form that validates when users don't enter their email. You can check it through my github: https://github.com/farrasnazhif/js-form-authenticator.git , there's a documentation how the form works and the code as well. Search Form I created a search form that allows users to look up Indonesian postal codes. Users can select a province and a city, and the form will display the corresponding postal code based on their input. You can check it through my github: https://github.com/farrasnazhif/js-search-form.git , there's a documentation how the search form works and the code as well. Dynamic Dropdown This project is a bit different from my previous ones. In this project, I created a custom dropdown instead of using the standard HTML <select> tag. I designed my own ...