basic_form.html 641 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Basic Form</title>
  5. <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
  6. </head>
  7. <body>
  8. <h1>Basic Form Page</h1>
  9. <form method="POST" action="basic_form_post.php">
  10. <input name="first_name" value="Firstname" type="text" />
  11. <input id="lastn" name="last_name" value="Lastname" type="text" />
  12. <input type="reset" id="Reset" />
  13. <input type="submit" id="Save" />
  14. <input type="image" id="input-type-image"/>
  15. <button>button-without-type</button>
  16. <button type="submit">button-type-submit</button>
  17. </form>
  18. </body>
  19. </html>