views:

352

answers:

3

Hi,

It is possible to add multiple reCAPTCHAS in one form? I tried doing so, even giving the multiple reCAPTCHAS different IDs, but when I load the page in the browser, only one of them is shown.

Is this by design? I need the two reCAPTCHAS because one is for Login, and the other one is for the Register form, which will be shown on the same page.

Thanks! WT

+1  A: 

After a quick google search, it appears that it's not currently possible. One suggestion I saw was to pop up a modal recaptcha just as the user submits the form. ondemandcaptcha for Ruby.

Greg
A: 

Only one Cpatcha is supported in a page at any time. What you can do is use AJAX and lod captcha after the form is loaded.

This might of some help.

Shoban
A: 

Decided to use another CAPTCHA, because I feel reCAPTCHA is overly complicated for users. Additionally, I will only be showing the CAPTCHA for login after 3 incorrect attempts.

Wild Thing