I'm trying to get the facebook registration plugin to enforce a password of 6 characters, as oposed to 8 characters requierd by default.
Client side validation works, but as the form is POST'ed, it returns an error saying that the characters need to be at least 8.
<fb:registration
fields="[
{'name':'name'},
{'name':'email'},
{'name':'location'},
{'name':'gender'},
{'name':'password', 'view':'not_prefilled'},
{'name':'phone', 'description':'Phone Number', 'type':'text'},
]"
onvalidate="fbvalidate"
redirect-uri="{redirect url}"
width="530">
</fb:registration>
and
<script>
function fbvalidate(form)
{
if(typeof(form.password) == "undefined")
{
return {}
}
errors = {};
if (form.password.length < 6) {
errors.password = "You password must be greater than 6 characters";
}
return errors;
}
</script>
Seeing as the client side validation works, but as the response gets back, it contains errors, I can only assume this is a validation that facebook itself does. So, is there a way to bypass this?