mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
43 lines
1.3 KiB
HTML
43 lines
1.3 KiB
HTML
<!-- IF S_TYPE == 1 -->
|
|
<div class="panel captcha-panel">
|
|
<div class="inner">
|
|
|
|
<h3 class="captcha-title">{L_CONFIRMATION}</h3>
|
|
<p>{L_CONFIRM_EXPLAIN}</p>
|
|
|
|
<fieldset class="fields2">
|
|
<!-- ENDIF -->
|
|
|
|
<!-- IF S_RECAPTCHA_AVAILABLE -->
|
|
<dl>
|
|
<dt><label>{L_CONFIRM_CODE}{L_COLON}</label><br /><span>{L_RECAPTCHA_EXPLAIN}</span></dt>
|
|
<dd class="captcha">
|
|
<script>
|
|
var RecaptchaOptions = {
|
|
lang : '{LA_RECAPTCHA_LANG}',
|
|
theme : 'clean',
|
|
tabindex : <!-- IF $CAPTCHA_TAB_INDEX -->{$CAPTCHA_TAB_INDEX}<!-- ELSE -->10<!-- ENDIF -->
|
|
};
|
|
</script>
|
|
<script src="{RECAPTCHA_SERVER}/challenge?k={RECAPTCHA_PUBKEY}{RECAPTCHA_ERRORGET}"></script>
|
|
|
|
<noscript>
|
|
<div>
|
|
<object data="{RECAPTCHA_SERVER}/noscript?k={RECAPTCHA_PUBKEY}{RECAPTCHA_ERRORGET}" type="text/html" height="300" width="500"></object><br />
|
|
<textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
|
|
<input type="hidden" name="recaptcha_response_field" value="manual_challenge" />
|
|
</div>
|
|
</noscript>
|
|
|
|
<a href="http://www.google.com/intl/{LA_RECAPTCHA_LANG}/policies/" target="_blank" class="recaptcha-responsive" style="display: none"><img alt="" width="71" height="36" src="{RECAPTCHA_SERVER}/img/clean/logo.png"></a>
|
|
</dd>
|
|
</dl>
|
|
<!-- ELSE -->
|
|
{L_RECAPTCHA_NOT_AVAILABLE}
|
|
<!-- ENDIF -->
|
|
|
|
<!-- IF S_TYPE == 1 -->
|
|
</fieldset>
|
|
</div>
|
|
</div>
|
|
<!-- ENDIF -->
|