Guest User

Untitled

a guest
Feb 17th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <script>
  2. function passcheck() {
  3. var pass1 = document.getElementById("pass1").value;
  4. var pass2 = document.getElementById("pass2").value;
  5. if (pass1 != pass2) {
  6. alert("Passwords Do not match");
  7. document.getElementById("pass1").style.borderColor = "#E34234";
  8. document.getElementById("pass2").style.borderColor = "#E34234";
  9. return false;
  10. }
  11. else {
  12.  
  13. return true;
  14. }
  15.  
  16. }
  17. </script>
Add Comment
Please, Sign In to add comment