mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
64 lines
1.8 KiB
HTML
64 lines
1.8 KiB
HTML
<!-- INCLUDE overall_header.html -->
|
|
|
|
<a id="maincontent"></a>
|
|
|
|
<h1>{L_ACP_VC_SETTINGS}</h1>
|
|
|
|
<p>{L_ACP_VC_SETTINGS_EXPLAIN}</p>
|
|
|
|
|
|
<form id="acp_captcha" method="post" action="{U_ACTION}">
|
|
|
|
<fieldset>
|
|
<legend>{L_GENERAL_OPTIONS}</legend>
|
|
|
|
<dl>
|
|
<dt><label for="recaptcha_pubkey">{L_RECAPTCHA_PUBLIC}{L_COLON}</label><br /><span>{L_RECAPTCHA_PUBLIC_EXPLAIN}</span></dt>
|
|
<dd><input id="recaptcha_pubkey" name="recaptcha_pubkey" value="{RECAPTCHA_PUBKEY}" size="50" type="text" /></dd>
|
|
</dl>
|
|
<dl>
|
|
<dt><label for="recaptcha_privkey">{L_RECAPTCHA_PRIVATE}{L_COLON}</label><br /><span>{L_RECAPTCHA_PRIVATE_EXPLAIN}</span></dt>
|
|
<dd><input id="recaptcha_privkey" name="recaptcha_privkey" value="{RECAPTCHA_PRIVKEY}" size="50" type="text" /></dd>
|
|
</dl>
|
|
|
|
<dl>
|
|
<dt>
|
|
<label>{{ lang('RECAPTCHA_V3_DOMAIN') ~ lang('COLON') }}</label>
|
|
<br><span>{{ lang('RECAPTCHA_V3_DOMAIN_EXPLAIN') }}</span>
|
|
</dt>
|
|
<dd>
|
|
{% for domain in RECAPTCHA_V2_DOMAINS %}
|
|
<label>
|
|
<input class="radio" name="recaptcha_v2_domain" type="radio" value="{{ domain }}"{{ domain == RECAPTCHA_V2_DOMAIN ? ' checked' }}>
|
|
<span>{{ domain }}</span>
|
|
</label>
|
|
{% endfor %}
|
|
</dd>
|
|
</dl>
|
|
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>{L_PREVIEW}</legend>
|
|
<!-- IF PREVIEW -->
|
|
<div class="successbox">
|
|
<h3>{L_WARNING}</h3>
|
|
<p>{L_CAPTCHA_PREVIEW_MSG}</p>
|
|
</div>
|
|
<!-- ENDIF -->
|
|
<!-- INCLUDE {CAPTCHA_PREVIEW} -->
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>{L_ACP_SUBMIT_CHANGES}</legend>
|
|
<p class="submit-buttons">
|
|
<input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />
|
|
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
|
|
</p>
|
|
<input type="hidden" name="select_captcha" value="{CAPTCHA_NAME}" />
|
|
<input type="hidden" name="configure" value="1" />
|
|
|
|
{S_FORM_TOKEN}
|
|
</fieldset>
|
|
</form>
|
|
|
|
<!-- INCLUDE overall_footer.html -->
|