Create an account not working (AS2)

I’m trying to create an account (AS2) and when I press continue, nothing happens image|690x256
Anyone know how to fix this?

Are you using a custom create.swf?

No, I’m using the one that came with the media server

This generally happens when recaptcha v3 is not configured correctly i.e. you are missing the HTML snippet on the play page that allows the recaptcha response to be sent back to the client.

Normally wand will do this for you but if you’ve set up your CPPS manually then you may have missed that bit out.

<script src="https://www.google.com/recaptcha/api.js?render=site_key"></script>
<script type="text/javascript">
function grecaptchaSubmit(){
  grecaptcha.execute('site_key', { action: 'login' }).then(function (token) {
    document.getElementById("game").finishedCaptcha(token);
  });
}
</script>