I have added the noscript html from the Google instructions to my login page:
<div class="g-recaptcha" data-sitekey="your_site_key"></div>
<noscript>
<div style="width: 302px; height: 422px;">
<div style="width: 302px; height: 422px; position: relative;">
<div style="width: 302px; height: 422px; position: absolute;">
<iframe src="https://www.google.com/recaptcha/api/fallback?k=your_site_key"
frameborder="0" scrolling="no"
style="width: 302px; height:422px; border-style: none;">
</iframe>
</div>
<div style="width: 300px; height: 60px; border-style: none;
bottom: 12px; left: 25px; margin: 0px; padding: 0px; right: 25px;
background: #f9f9f9; border: 1px solid #c1c1c1; border-radius: 3px;">
<textarea id="g-recaptcha-response" name="g-recaptcha-response"
class="g-recaptcha-response"
style="width: 250px; height: 40px; border: 1px solid #c1c1c1;
margin: 10px 25px; padding: 0px; resize: none;" >
</textarea>
</div>
</div>
</div>
</noscript>
This produces a 2 word captcha as expected but on successful verification I get an iframe saying ''Copy this code and paste it in the empty box below" and a field with the code in it (see screenshot). However, the textarea to paste the code in is hidden by the iframe. Surely this should be a part of the frame so it sits just below the text? Has anyone got this working and can tell me how it should look on screen? Thanks.
