I have a problem that I haven't been able to figure out. No matter what coding scheme I use my Google reCaptcha won't display right. I'm doing it in a bootstrap form. Here's what I get:
And here is my code:
if (!iADMIN) {
echo "<div class='form-group'>n";
include INCLUDES."captchas/".$settings['captcha']."/captcha_display.php";
if (!isset($_CAPTCHA_HIDE_INPUT) || (isset($_CAPTCHA_HIDE_INPUT) && !$_CAPTCHA_HIDE_INPUT)) {
echo "<label class='control-label col-sm-2' for='captcha_code'>Validation:</label>n";
echo "<div class='col-sm-8'>n";
echo "<input type='text' id='captcha_code' name='captcha_code' class='textbox' autocomplete='off'>n";
echo "</div>n";
}
echo "</div>n";
}
It will not display the label text and will not align where it should, underneath the text area.