form.html 323 B

123456789
  1. <html>
  2. <body onclick="document.forms['form1'].submit();">
  3. <form id="form1" action="simple_page.html" method="post">
  4. <input type="text" name="name" value="Name"><br>
  5. <input type="text" name="address" value="Address"><br>
  6. <input type="text" name="city" value="City"><br>
  7. </form>
  8. </body>
  9. </html>