Advertisement
Guest User

code to copy into the demo

a guest
Oct 10th, 2020
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 KB | None | 0 0
  1. <form>
  2.   <div>
  3.     <label for="username">username</label>
  4.     <input
  5.      id="username"
  6.      type="text"
  7.      autocomplete="username"
  8.    />
  9.     <label for="password">password</label>
  10.     <input
  11.      id="password"
  12.      type="password"
  13.      autocomplete="new-password"
  14.    />
  15.   </div>
  16.   <button id="send">send</button>
  17. </form>
  18.  
  19. <script>
  20. document.getElementById('send').addEventListener('click', (event) => {
  21.   //event.preventDefault()
  22.   console.log('test')
  23. })
  24. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement