Advertisement
Guest User

Untitled

a guest
Jul 24th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. /*window.addEventListener('load', function() {
  6. var b = document.getElementById('b');
  7. report = function(e) {
  8. console.log(e.type)
  9. }
  10. b.addEventListener('gotpointercapture', report, false);
  11. }, true); */
  12. </script>
  13. </head>
  14. <body>
  15.  
  16. <h2>Simple HTML Form</h2>
  17.  
  18. <form action="/form.html">
  19. Username: <input id="b" type="text" name="username"><br>
  20. <br>
  21. Password: <input name="password" type="password">
  22. <br><br>
  23. <input type="submit" value="Submit">
  24. </form>
  25.  
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement