Guest User

Untitled

a guest
Nov 12th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>basicform</title>
  6. </head>
  7. <body>
  8. <h2>GET</h2>
  9.  
  10. <form method="GET" action="/api/forms-101">
  11. <input type="text" name="level" id="myForm" value="" placeholder="what's the level ?">
  12. <button type="submit">Valider</button>
  13. </form>
  14.  
  15. <h2>POST</h2>
  16. <form method="POST" action="/api/forms-101">
  17. <input type="text" name="level" id="myForm" value="" placeholder="what's the level again ?">
  18. <button type="submit">Valider</button>
  19. </form>
  20. </body>
  21. </html>
Add Comment
Please, Sign In to add comment