Add more rules for passwords.
This commit is contained in:
parent
3acdcf9e08
commit
885829c2e4
1 changed files with 10 additions and 0 deletions
10
js/rules.js
10
js/rules.js
|
@ -3,4 +3,14 @@ var special = new Array();
|
||||||
special['53.com'] = (function(password) {
|
special['53.com'] = (function(password) {
|
||||||
// 6-12 characters
|
// 6-12 characters
|
||||||
return password.substr(0,12);
|
return password.substr(0,12);
|
||||||
|
});
|
||||||
|
|
||||||
|
special['paypal.com'] = (function(password) {
|
||||||
|
// 8-20 characters
|
||||||
|
return password.substr(0,20);
|
||||||
|
});
|
||||||
|
|
||||||
|
special['ebay.com'] = (function(password) {
|
||||||
|
// 8-20 characters
|
||||||
|
return password.substr(0,20);
|
||||||
});
|
});
|
Loading…
Reference in a new issue