Exercise Solutions: FormsΒΆ
- Create a ``<form>`` tag with ``method`` and ``action`` attributes. - 1 2 3 - <form action="https://handlers.education.launchcode.org/request-parrot" method="POST"> // the rest of your form fields go in here // </form> 
- What is missing to be able to submit the form? - You can't submit the form without a button to submit it! 
- Is a value inserted into the "testName" input properly submitted? - Yes! At this point, your form should be able to handle input into the "testName" field. 
