Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const userName = document.getElementById('username').value
- const password = document.getElementById('password').value
- const confirm_password = document.getElementById('confirm_password').value
- const form = document.getElementById('myForm')
- const error = document.getElementById('error')
- form.addEventListener('submit', (r) => {
- r.preventDefault();
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement