Change the theme of Recaptcha?
asp.net, c#, captcha, javascript, recaptcha
Solution
I think you are just writing the name of the theme in wrong way, just try White with a small 'w'.
<script type="text/javascript">
var RecaptchaOptions = {theme : 'white'};
</script>
See this link for exact working code:
https://developers.google.com/recaptcha/docs/customization
Problem
I use the Following script for change recaptcha in asp.net with c# server side.But this code Didn't Work.How to change color or theme of the ReCaptcha? ``` <script type="text/javascript"> var RecaptchaOptions = {theme : 'White'}; </script> ```