diff --git a/public/app/controllers/loginCtrl.js b/public/app/controllers/loginCtrl.js index c8856df0690..cda5a085fd3 100644 --- a/public/app/controllers/loginCtrl.js +++ b/public/app/controllers/loginCtrl.js @@ -67,7 +67,7 @@ function (angular, config) { $scope.strengthClass = "password-strength-bad"; return; } - if (newValue.length <= 6) { + if (newValue.length <= 8) { $scope.strengthText = "strength: you can do better."; $scope.strengthClass = "password-strength-ok"; return;