Created
May 18, 2017 17:33
-
-
Save lizardking8610/fc4ccec1069df5dfe3a3194ac2ded445 to your computer and use it in GitHub Desktop.
jQuery: password strength for membership sites
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#pass').keyup(function(e) { | |
var strongRegex = new RegExp("^(?=.{8,})(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*\\W).*$", "g"); | |
var mediumRegex = new RegExp("^(?=.{7,})(((?=.*[A-Z])(?=.*[a-z]))|((?=.*[A-Z])(?=.*[0-9]))|((?=.*[a-z])(?=.*[0-9]))).*$", "g"); | |
var enoughRegex = new RegExp("(?=.{6,}).*", "g"); | |
if (false == enoughRegex.test($(this).val())) { | |
$('#passstrength').html('More Characters'); | |
} else if (strongRegex.test($(this).val())) { | |
$('#passstrength').className = 'ok'; | |
$('#passstrength').html('Strong!'); | |
} else if (mediumRegex.test($(this).val())) { | |
$('#passstrength').className = 'alert'; | |
$('#passstrength').html('Medium!'); | |
} else { | |
$('#passstrength').className = 'error'; | |
$('#passstrength').html('Weak!'); | |
} | |
return true; | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input type="password" name="pass" id="pass" /> | |
<span id="passstrength"></span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment