source: trunk/forum/adm/style/acp_captcha.html

Last change on this file was 702, checked in by george, 15 years ago
  • Upraveno: Aktualizace fóra.
File size: 3.2 KB
Line 
1<!-- INCLUDE overall_header.html -->
2
3<a name="maincontent"></a>
4
5<h1>{L_ACP_VC_SETTINGS}</h1>
6
7<p>{L_ACP_VC_SETTINGS_EXPLAIN}</p>
8
9
10<form id="acp_captcha" method="post" action="{U_ACTION}">
11
12<fieldset>
13<legend>{L_GENERAL_OPTIONS}</legend>
14
15<dl>
16 <dt><label for="enable_confirm">{L_VISUAL_CONFIRM_REG}:</label><br /><span>{L_VISUAL_CONFIRM_REG_EXPLAIN}</span></dt>
17 <dd><label><input type="radio" class="radio" id="enable_confirm" name="enable_confirm" value="1"<!-- IF REG_ENABLE --> checked="checked"<!-- ENDIF --> /> {L_ENABLED}</label>
18 <label><input type="radio" class="radio" name="enable_confirm" value="0"<!-- IF not REG_ENABLE --> checked="checked"<!-- ENDIF --> /> {L_DISABLED}</label></dd>
19</dl>
20<dl>
21 <dt><label for="max_reg_attempts">{L_REG_LIMIT}:</label><br /><span>{L_REG_LIMIT_EXPLAIN}</span></dt>
22 <dd><input id="max_reg_attempts" type="text" size="4" maxlength="4" name="max_reg_attempts" value="{REG_LIMIT}" /></dd>
23</dl>
24<dl>
25 <dt><label for="max_login_attempts">{L_MAX_LOGIN_ATTEMPTS}:</label><br /><span>{L_MAX_LOGIN_ATTEMPTS_EXPLAIN}</span></dt>
26 <dd><input id="max_login_attempts" type="text" size="4" maxlength="4" name="max_login_attempts" value="{MAX_LOGIN_ATTEMPTS}" /></dd>
27</dl>
28<dl>
29 <dt><label for="enable_post_confirm">{L_VISUAL_CONFIRM_POST}:</label><br /><span>{L_VISUAL_CONFIRM_POST_EXPLAIN}</span></dt>
30 <dd><label><input type="radio" class="radio" id="enable_post_confirm" name="enable_post_confirm" value="1"<!-- IF POST_ENABLE --> checked="checked"<!-- ENDIF --> /> {L_ENABLED}</label>
31 <label><input type="radio" class="radio" name="enable_post_confirm" value="0"<!-- IF not POST_ENABLE --> checked="checked"<!-- ENDIF --> /> {L_DISABLED}</label></dd>
32</dl>
33<dl>
34 <dt><label for="confirm_refresh">{L_VISUAL_CONFIRM_REFRESH}:</label><br /><span>{L_VISUAL_CONFIRM_REFRESH_EXPLAIN}</span></dt>
35 <dd><label><input type="radio" class="radio" id="confirm_refresh" name="confirm_refresh" value="1"<!-- IF CONFIRM_REFRESH --> checked="checked"<!-- ENDIF --> /> {L_ENABLED}</label>
36 <label><input type="radio" class="radio" name="confirm_refresh" value="0"<!-- IF not CONFIRM_REFRESH --> checked="checked"<!-- ENDIF --> /> {L_DISABLED}</label></dd>
37</dl>
38</fieldset>
39
40<fieldset>
41<legend>{L_AVAILABLE_CAPTCHAS}</legend>
42<dl>
43 <dt><label for="captcha_select">{L_CAPTCHA_SELECT}:</label><br /><span>{L_CAPTCHA_SELECT_EXPLAIN}</span></dt>
44 <dd><select id="captcha_select" name="select_captcha" onchange="(document.getElementById('acp_captcha')).submit()" >{CAPTCHA_SELECT}</select></dd>
45</dl>
46 <!-- IF S_CAPTCHA_HAS_CONFIG -->
47<dl>
48 <dt><label for="configure">{L_CAPTCHA_CONFIGURE}:</label><br /><span>{L_CAPTCHA_CONFIGURE_EXPLAIN}</span></dt>
49 <dd><input class="button2" type="submit" id="configure" name="configure" value="{L_CONFIGURE}" /></dd>
50</dl>
51<!-- ENDIF -->
52</fieldset>
53
54<!-- IF CAPTCHA_PREVIEW_TPL -->
55<fieldset>
56 <legend>{L_PREVIEW}</legend>
57<!-- INCLUDE {CAPTCHA_PREVIEW_TPL} -->
58</fieldset>
59<!-- ENDIF -->
60
61<fieldset>
62 <legend>{L_ACP_SUBMIT_CHANGES}</legend>
63 <p class="submit-buttons">
64 <input class="button1" type="submit" id="main_submit" name="main_submit" value="{L_SUBMIT}" />&nbsp;
65 <input class="button2" type="reset" id="form_reset" name="reset" value="{L_RESET}" />&nbsp;
66 </p>
67 {S_FORM_TOKEN}
68</fieldset>
69</form>
70
71<!-- INCLUDE overall_footer.html -->
Note: See TracBrowser for help on using the repository browser.