Question #242

Author: admin
tags: HTML   frontend (web)  
<form action="/cart" method="post">
  <input name="checkout" type="hidden">
  <button type="button">
    Checkout
  </button>
</form>
Carefully review the code. What will be sent to the server after clicking on the button?
GET request
POST request with multipart/form-data Content-Type
POST request with application/x-www-form-urlencoded Content-Type
Nothing
The button is not clickable, because the form has hidden input
The value of type attribute of the button is button, not submit.
Rate the difficulty of the question:
easyhard