Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1.  
  2. function Check_Passwords(){
  3. var pass1 = document.getElementById('RegisterPassword').value;
  4. var pass2 = document.getElementById('RegisterPassword2').value;
  5. if(pass1.length > 3){
  6.  
  7. if(pass2.length > 3){
  8.  
  9. if(pass1 != pass2){
  10. document.getElementById('RegisterPasswordLabel').innerHTML = "<font color='red'>New Password: Dont Match</font>";
  11. document.getElementById('RegisterPasswordLabel2').innerHTML = "<font color='red'>Re- Password: Dont Match</font>";
  12. }
  13. else
  14. {
  15. document.getElementById('RegisterPasswordLabel').innerHTML = "<font color='green'>New Password: Perfect</font>";
  16. document.getElementById('RegisterPasswordLabel2').innerHTML = "<font color='green'>Re- Password: Perfect</font>";
  17. }
  18.  
  19.  
  20.  
  21. }
  22. else{
  23. document.getElementById('RegisterPasswordLabel2').innerHTML = "<font color='red'>New Password: Short</font>";
  24. }
  25.  
  26.  
  27.  
  28. }
  29. else {
  30. document.getElementById('RegisterPasswordLabel').innerHTML = "<font color='red'>New Password: Short</font>";
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement