I have the following form:
<form name="frmSearch" id="frmSearch" action="search_results.html" method="get">
    <table>
        <tr>
            <td><input type="text" id="txtQuery" placeholder="What are you hungry for ?" required="true"></td>
        </tr>
        <tr>
            <td><input type="text" id="txtLocation" placeholder="Your location" required="true">
        </tr>
        <tr>
            <td align="middle"><input type="submit"  placeholder="Let's Eat!" ></td>
        </tr>
    </table>
</form>
When I click on the 'Let's Eat' button(the submit button), URL of the new page launched does not include the values from the two input fields:
http://localhost:8000/search_results.html?
Why is this ?
 
    