test.html 428 B

123456789101112131415
  1. <html>
  2. <head><title>test</title></head>
  3. <body>
  4. <form action="myurl" method="POST" name="myForm">
  5. <p><label for="first_name">First Name:</label>
  6. <input type="text" name="first_name" id="fname"></p>
  7. <p><label for="last_name">Last Name:</label>
  8. <input type="text" name="last_name" id="lname"></p>
  9. <input value="Submit" type="submit" onclick="submitform()">
  10. </form>
  11. </body>
  12. </html>