add(new FeedbackBorder("verifyPasswordBorder")
.add(verifyPassword = (PasswordTextField) new PasswordTextField("verifyPassword", new Model<String>())
.setRequired(true)));
// Passwords and email addresses have to match
add(new EqualPasswordConvertedInputValidator(password, verifyPassword));
add(new EqualInputValidator(email, verifyEmail));
}