function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
bujjibujji 

Captcha Implementation

Hi,

 

Is anybody implemented captcha apart from Google Re-Captcha. If so please suggest me some nice Captcha.

I have done recaptcha.. but i have some alignment problem..

 

Thanks,

Bujji

Gulshan_7890Gulshan_7890

Does the ReCaptcha box appears distorted above? If yes, then you can tweak its css a bit.

KrishSFDCKrishSFDC

Hi Bujji,

 

I have gone through some sites and find out a link for your question. Check the below link. it may helps you some way.

 

http://malebolgia.shadowsonawall.net/code-programming/captcha-with-salesforce.html

 

Thanks
Gopi
DBSync LLC
www.mydbsync.com

bujjibujji
Thanks for your time, i tried it but the problem is the alignment is not good.

Thanks,
Bujji
bujjibujji
I am not using any css just using the below lines of code to display the captcha box.

<div id="captchaEnter" title="Form Submission Validation" >
<center>
&lt;script type="text/javascript" src="https://www.google.com/recaptcha/api/challenge?k=6LctrN0SAAAAAEYD1-RMaqTQotm2DTPMBNbxtVq5"/>
</center>

<div id="validationResultDiv"></div>
<apex:commandButton value="validate" reRender="validationResultDiv"/>
</div>

Thanks,
Bujji
Gulshan_7890Gulshan_7890

I had a problem where the reCaptcha box was distorted a bit.

 

I used the following css to correct this:

 

.recaptcha_input_area{
      height: 0px!important;
}

 

the css class recaptcha_input_area is used by recaptcha for styling purposes.

 

Regards,

Gulshan