]> WPIA git - gigi.git/blobdiff - src/club/wpia/gigi/pages/main/Signup.java
chg: improve information about password strength
[gigi.git] / src / club / wpia / gigi / pages / main / Signup.java
index 746fd803a6bee2790cd6f37c2ac4070ee8a47fde..07d7f9126cf93606e0e88668b3327f93b6ee2f07 100644 (file)
@@ -139,7 +139,7 @@ public class Signup extends Form {
         }
         int pwpoints = PasswordStrengthChecker.checkpw(pw1, ni.getNamePartsPlain(), email);
         if (pwpoints < 3) {
-            ga.mergeInto(new GigiApiException("The Pass Phrase you submitted failed to contain enough" + " differing characters and/or contained words from" + " your name and/or email address."));
+            ga.mergeInto(new GigiApiException(new SprintfCommand("The Pass Phrase you submitted failed to contain enough differing characters and/or contained words from your name and/or email address. For the current requirements and to learn more, visit our {0}FAQ{1}.", Arrays.asList("!(/wiki/goodPassword", "!'</a>'"))));
         }
         if ( !ga.isEmpty()) {
             throw ga;