Exercise Solutions: FormsΒΆ

  1. 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>
    

    Back to the exercises

  1. What is missing to be able to submit the form?

    You can't submit the form without a button to submit it!

    Back to the exercises

  1. 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.

    Back to the exercises