Changeset 702 for trunk/forum/adm/style/acp_captcha.html
- Timestamp:
- Mar 31, 2010, 6:32:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/forum/adm/style/acp_captcha.html
r400 r702 19 19 </dl> 20 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> 21 29 <dt><label for="enable_post_confirm">{L_VISUAL_CONFIRM_POST}:</label><br /><span>{L_VISUAL_CONFIRM_POST_EXPLAIN}</span></dt> 22 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> 23 31 <label><input type="radio" class="radio" name="enable_post_confirm" value="0"<!-- IF not POST_ENABLE --> checked="checked"<!-- ENDIF --> /> {L_DISABLED}</label></dd> 24 32 </dl> 25 <!-- IF GD -->26 33 <dl> 27 <dt><label for="captcha_gd">{L_CAPTCHA_GD}:</label><br /><span>{L_CAPTCHA_GD_EXPLAIN}</span></dt> 28 <dd><label><input id="captcha_gd" name="captcha_gd" value="1" class="radio" type="radio"<!-- IF CAPTCHA_GD --> checked="checked"<!-- ENDIF --> /> {L_YES}</label> 29 <label><input name="captcha_gd" value="0" class="radio" type="radio"<!-- IF not CAPTCHA_GD --> checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd> 30 </dl> 31 <dl> 32 <dt><label for="captcha_gd_foreground_noise">{L_CAPTCHA_GD_FOREGROUND_NOISE}:</label><br /><span>{L_CAPTCHA_GD_FOREGROUND_NOISE_EXPLAIN}</span></dt> 33 <dd><label><input id="captcha_gd_foreground_noise" name="captcha_gd_foreground_noise" value="1" class="radio" type="radio"<!-- IF CAPTCHA_GD_FOREGROUND_NOISE --> checked="checked"<!-- ENDIF --> /> {L_YES}</label> 34 <label><input name="captcha_gd_foreground_noise" value="0" class="radio" type="radio"<!-- IF not CAPTCHA_GD_FOREGROUND_NOISE --> checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd> 35 </dl> 36 <dl> 37 <dt><label for="captcha_gd_x_grid">{L_CAPTCHA_GD_X_GRID}:</label><br /><span>{L_CAPTCHA_GD_X_GRID_EXPLAIN}</span></dt> 38 <dd><input id="captcha_gd_x_grid" name="captcha_gd_x_grid" value="{CAPTCHA_GD_X_GRID}" type="text" /></dd> 39 </dl> 40 <dl> 41 <dt><label for="captcha_gd_y_grid">{L_CAPTCHA_GD_Y_GRID}:</label><br /><span>{L_CAPTCHA_GD_Y_GRID_EXPLAIN}</span></dt> 42 <dd><input id="captcha_gd_y_grid" name="captcha_gd_y_grid" value="{CAPTCHA_GD_Y_GRID}" type="text" /></dd> 43 </dl> 44 <!-- ENDIF --> 45 46 </fieldset> 47 <fieldset> 48 <legend>{L_PREVIEW}</legend> 49 <!-- IF PREVIEW --> 50 <div class="successbox"> 51 <h3>{L_WARNING}</h3> 52 <p>{L_CAPTCHA_PREVIEW_MSG}</p> 53 </div> 54 <!-- ENDIF --> 55 <dl> 56 <dt><label for="captcha_preview">{L_PREVIEW}:</label><br /><span>{L_CAPTCHA_PREVIEW_EXPLAIN}</span></dt> 57 <dd><img src="{CAPTCHA_PREVIEW}" alt="{L_PREVIEW}" <!-- IF CAPTCHA_GD_PREVIEWED -->width="360" height="96"<!-- ELSE --> width="320" height="50"<!-- ENDIF --> id="captcha_preview" /></dd> 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> 58 37 </dl> 59 38 </fieldset> 60 39 61 <fieldset class="submit-buttons"> 62 <legend>{L_SUBMIT}</legend> 63 <input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" /> 64 <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" /> 65 <input class="button2" type="submit" id="preview" name="preview" value="{L_PREVIEW}" /> 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}" /> 65 <input class="button2" type="reset" id="form_reset" name="reset" value="{L_RESET}" /> 66 </p> 66 67 {S_FORM_TOKEN} 67 68 </fieldset>
Note:
See TracChangeset
for help on using the changeset viewer.