OSDN Git Service

Changed the limitation of password length to that of Linux login.defs(PASS_MIN_LEN 5).
authorTaizo ITO <taizo@karesansui-project.info>
Thu, 8 Jul 2010 04:18:23 +0000 (13:18 +0900)
committerTaizo ITO <taizo@karesansui-project.info>
Thu, 8 Jul 2010 04:18:23 +0000 (13:18 +0900)
karesansui/static/js/const.js

index 1796d99..af8a878 100644 (file)
@@ -18,7 +18,7 @@ USER_MIN_LENGTH = 1;
 USER_MAX_LENGTH = 16;
 EMAIL_MIN_LENGTH = 1 + 1 + 4;
 EMAIL_MAX_LENGTH = 256;
-PASSWORD_MIN_LENGTH = 4;
+PASSWORD_MIN_LENGTH = 5;
 PASSWORD_MAX_LENGTH = 40;
 LANGUAGES_MIN_LENGTH = 1;
 LANGUAGES_MAX_LENGTH = 6;