Advertisement
Guest User

main.js

a guest
Dec 26th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. const userName = document.getElementById('username').value
  2. const password = document.getElementById('password').value
  3. const confirm_password = document.getElementById('confirm_password').value
  4. const form = document.getElementById('myForm')
  5. const error = document.getElementById('error')
  6.  
  7.  
  8. form.addEventListener('submit', (r) => {
  9.  
  10. r.preventDefault();
  11. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement