[ 'UserInputID' => 'CaptchaCode', 'CodeLength' => 4, 'ImageWidth' => 250, 'ImageHeight' => 50, ], /* |-------------------------------------------------------------------------- | Captcha configuration for contact page |-------------------------------------------------------------------------- */ 'ContactCaptcha' => [ 'UserInputID' => 'CaptchaCode', 'CodeLength' => CaptchaRandomization::GetRandomCodeLength(4, 6), 'ImageStyle' => ImageStyle::AncientMosaic, ], /* |-------------------------------------------------------------------------- | Captcha configuration for login page |-------------------------------------------------------------------------- */ 'LoginCaptcha' => [ 'UserInputID' => 'CaptchaCode', 'CodeLength' => 3, 'ImageStyle' => [ ImageStyle::Radar, ImageStyle::Collage, ImageStyle::Fingerprints, ], ], /* |-------------------------------------------------------------------------- | Captcha configuration for register page |-------------------------------------------------------------------------- */ 'RegisterCaptcha' => [ 'UserInputID' => 'CaptchaCode', 'CodeLength' => CaptchaRandomization::GetRandomCodeLength(3, 4), 'CodeStyle' => CodeStyle::Alpha, ], /* |-------------------------------------------------------------------------- | Captcha configuration for reset password page |-------------------------------------------------------------------------- */ 'ResetPasswordCaptcha' => [ 'UserInputID' => 'CaptchaCode', 'CodeLength' => 2, 'CustomLightColor' => '#9966FF', ], // Add more your Captcha configuration here... ];