Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function valid() {
  2. if(document.signup.password.value!= document.signup.confirmpassword.value)
  3. alert("Password and Confirm Password Field do not match !!");
  4. document.signup.confirmpassword.focus();
  5. return false;
  6. }
  7. return true;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement