summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/auth/SignupView.js
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/www/js/lib/auth/SignupView.js')
-rw-r--r--StoneIsland/www/js/lib/auth/SignupView.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/StoneIsland/www/js/lib/auth/SignupView.js b/StoneIsland/www/js/lib/auth/SignupView.js
index 24eb0d09..28d828c3 100644
--- a/StoneIsland/www/js/lib/auth/SignupView.js
+++ b/StoneIsland/www/js/lib/auth/SignupView.js
@@ -32,6 +32,7 @@ var SignupView = FormView.extend({
},
validate_fields: function(errors){
+ if (data.Password.length < 7) { errors.push("Password", "Password must be 7 characters or more.") }
if (data.Password !== data.Password2) { errors.push("Password2", "Passwords don't match.") }
if (data.Email !== data.ConfirmEmail) { errors.push("ConfirmEmail", "Email addresses don't match.") }
if (! data.YooxLetter) { data.YooxLetter = "false" }