source: extensions/Register_FluxBB/trunk/admin/manage.tpl @ 4287

Last change on this file since 4287 was 4287, checked in by Eric, 14 years ago

[Register_FluxBB] Trunk renewal

  • Using sha1 hash instead of md5 for password hashing in FluxBB because FluxBB uses prior sha1 hash and md5 only in last sentence.
  • Escaping all characters in login names and be able to retreive them without slashes - FluxBB does not allow this so Piwigo's user names with escaped characters will not been escaped in FluxBB (ie : "it's" in Piwigo will be "It\'s" in FluxBB)
  • Code refactoring
  • Full HTML 4.0 for tpl
  • Property svn:eol-style set to LF
File size: 2.2 KB
Line 
1<div class="titrePage">
2  <ul class="categoryActions">
3 
4  </ul>
5  <h2>{'Tab_Manage'|@translate}</h2>
6</div>
7
8<br>
9
10<form method="post" action={$FluxBB_F_ACTION}>
11  <fieldset>
12        <legend>{'Register_FluxBB_Config_Title'|@translate}</legend>
13    <div align="left">{'Register_FluxBB_Config_Disclaimer'|@translate}</div>
14    <ul>
15        <li><label>{'Register_FluxBB_Prefix'|@translate}</label><br>
16                <input type="text" name="FluxBB_prefix" size="20" style="text-align: center;" value={$FluxBB_PREFIX}><br>
17        </li>
18      <br>
19        <li><label>{'Register_FluxBB_Admin'|@translate}</label><br>
20                <input type="text" name="FluxBB_admin" value={$FluxBB_ADMIN} size="20" style="text-align: center;"><br>
21                <label>{'Register_FluxBB_User'|@translate}</label><br>
22        </li>
23      <br>
24        <li><label>{'Register_FluxBB_Guest'|@translate}</label><br>
25                <input type="text" name="FluxBB_guest" value={$FluxBB_GUEST} size="20" style="text-align: center;"><br>
26        </li>
27      <br>
28        <li><label>{'Register_FluxBB_Del_Pt'|@translate}</label><br>
29        <input type="radio" value="true" {$FluxBB_DEL_PT_TRUE} name="FluxBB_del_pt">{'Register_FluxBB_Del_Pt_true'|@translate}<br>
30        <input type="radio" value="false" {$FluxBB_DEL_PT_FALSE} name="FluxBB_del_pt">{'Register_FluxBB_Del_Pt_false'|@translate}<br>
31        </li>
32      <br>
33        <li><label>{'Register_FluxBB_Confirm'|@translate}</label><br>
34        <input type="radio" value="true" {$FluxBB_CONFIRM_TRUE} name="FluxBB_confirm">{'Register_FluxBB_Confirm_true'|@translate}<br>
35        <input type="radio" value="false" {$FluxBB_CONFIRM_FALSE} name="FluxBB_confirm">{'Register_FluxBB_Confirm_false'|@translate}<br>
36        </li>
37      <br>
38        <li><label>{'Register_FluxBB_Details'|@translate}</label><br>
39        <input type="radio" value="true" {$FluxBB_DETAILS_TRUE} name="FluxBB_details">{'Register_FluxBB_Details_true'|@translate}<br>
40        <input type="radio" value="false" {$FluxBB_DETAILS_FALSE} name="FluxBB_details">{'Register_FluxBB_Details_false'|@translate}<br>
41        </li>
42    </ul>
43    <br>
44        {'Register_FluxBB_No_Reg_advise'|@translate}
45    <br>
46        <div align="center"><input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" {$TAG_INPUT_ENABLED}></div>
47  </fieldset>
48</form>
Note: See TracBrowser for help on using the repository browser.