source: extensions/CryptograPHP/admin.tpl @ 11316

Last change on this file since 11316 was 11316, checked in by mistic100, 13 years ago

activate captcha on comment form

File size: 1.4 KB
Line 
1<div class="titrePage">
2  <h2>CryptograPHP</h2>
3</div>
4
5<form method="post" class="properties">
6<fieldset>
7  <legend>{'Configuration'|@translate}</legend>
8 
9  <ul>                 
10    <li style="text-align:center;">
11      <b>{'Captcha theme'|@translate}</b><br/>
12      {foreach from=$available_themes item=theme}
13      <div style="display:inline-block;margin-top:5px;">
14       <label for="{$theme}-example"><img src="{$CRYPTO_PATH}cryptographp/images/{$theme}.png" alt="{$theme}"/></label> <br/>
15        <input type="radio" name="cryptographp_theme" id="{$theme}-example" value="{$theme}" {if $theme == $cryptographp_theme}checked="checked"{/if}/>
16      </div>
17      {/foreach}
18    </li>
19
20    <li>
21      <span class="property">{'Comments action'|@translate}</span>
22      <label><input type="radio" name="comments_action" value="inactive" {if $comments_action == 'inactive'}checked="checked"{/if}/> {'No captcha'|@translate}</label>
23      <label><input type="radio" name="comments_action" value="reject" {if $comments_action == 'reject'}checked="checked"{/if}/> {'Reject'|@translate}</label>
24      <label><input type="radio" name="comments_action" value="moderate" {if $comments_action == 'moderate'}checked="checked"{/if}/> {'Moderate'|@translate}</label>
25    </li>
26  </ul>
27 
28  <p class="bottomButtons">
29    <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit"/>
30  </p>
31</fieldset>
32</form>
Note: See TracBrowser for help on using the repository browser.