source: extensions/floPure/Pure_clear_blue/template/profile_content.tpl @ 5835

Last change on this file since 5835 was 5835, checked in by flop25, 14 years ago

first version for 2.1 ;

File size: 4.1 KB
Line 
1<form method="post" name="profile" action="{$F_ACTION}" id="profile" class="properties">
2
3  <fieldset>
4    <legend>{'Registration'|@translate}</legend>
5    <input type="hidden" name="redirect" value="{$REDIRECT}">
6    <ul>
7      <li>
8        <span class="property">{'Username'|@translate}</span>
9        {$USERNAME}
10      </li>
11{if not $SPECIAL_USER} {* can modify password + email*}
12      <li>
13        <span class="property">
14          <label for="mail_address">{'Email address'|@translate}</label>
15        </span>
16        <input type="text" name="mail_address" id="mail_address" value="{$EMAIL}">
17      </li>
18{if not $IN_ADMIN} {* admins do not need old password*}
19      <li>
20        <span class="property">
21          <label for="password">{'Password'|@translate}</label>
22        </span>
23        <input type="password" name="password" id="password" value="">
24      </li>
25{/if}
26      <li>
27        <span class="property">
28          <label for="use_new_pwd">{'New password'|@translate}</label>
29        </span>
30        <input type="password" name="use_new_pwd" id="use_new_pwd" value="">
31      </li>
32      <li>
33        <span class="property">
34          <label for="passwordConf">{'Confirm Password'|@translate}</label>
35        </span>
36        <input type="password" name="passwordConf" id="passwordConf" value="">
37      </li>
38    </ul>
39{/if}
40  </fieldset>
41
42{if $ALLOW_USER_CUSTOMIZATION}
43  <fieldset>
44    <legend>{'Preferences'|@translate}</legend>
45
46    <ul>
47      <li>
48        <span class="property">
49          <label for="nb_image_line">{'Number of images per row'|@translate}</label>
50        </span>
51        <input type="text" size="3" maxlength="2" name="nb_image_line" id="nb_image_line" value="{$NB_IMAGE_LINE}">
52      </li>
53      <li>
54        <span class="property">
55          <label for="nb_line_page">{'Number of rows per page'|@translate}</label>
56        </span>
57        <input type="text" size="3" maxlength="2" name="nb_line_page" id="nb_line_page" value="{$NB_ROW_PAGE}" >
58      </li>
59      <li>
60        <span class="property">
61          <label for="template">{'Interface theme'|@translate}</label>
62        </span>
63        {html_options name=theme options=$template_options selected=$template_selection}
64      </li>
65      <li>
66        <span class="property">
67          <label for="Language">{'Language'|@translate}</label>
68        </span>
69        {html_options name=language options=$language_options selected=$language_selection}
70      </li>
71      <li>
72        <span class="property">
73          <label for="Recent period">{'Recent period'|@translate}</label>
74        </span>
75        <input type="text" size="3" maxlength="2" name="recent_period" id="recent_period" value="{$RECENT_PERIOD}">
76      </li>
77      <li>
78        <span class="property">{'Expand all categories'|@translate}</span>
79        {html_radios name='expand' options=$radio_options selected=$EXPAND}
80      </li>
81      <li>
82        <span class="property">{'Show number of comments'|@translate}</span>
83        {html_radios name='show_nb_comments' options=$radio_options selected=$NB_COMMENTS}
84      </li>
85      <li>
86        <span class="property">{'Show number of hits'|@translate}</span>
87        {html_radios name='show_nb_hits' options=$radio_options selected=$NB_HITS}
88      </li>
89      <li>
90        <span class="property">
91          <label for="Maximum width of the pictures">{'Maximum width of the pictures'|@translate}</label>
92        </span>
93        <input type="text" size="4" maxlength="4" name="maxwidth" id="maxwidth" value="{$MAXWIDTH}">
94      </li>
95      <li>
96        <span class="property">
97          <label for="Maximum height of the pictures">{'Maximum height of the pictures'|@translate}</label>
98        </span>
99        <input type="text" size="4" maxlength="4" name="maxheight" id="maxheight" value="{$MAXHEIGHT}">
100      </li>
101    </ul>
102  </fieldset>
103{/if}
104
105  <p class="bottomButtons">
106    <input class="submit" type="submit" name="validate" value="{'Submit'|@translate}">
107    <input class="submit" type="reset" name="reset" value="{'Reset'|@translate}">
108    {if $ALLOW_USER_CUSTOMIZATION}
109    <input class="submit" type="submit" name="reset_to_default" value="{'Reset to default values'|@translate}">
110    {/if}
111  </p>
112
113</form>
Note: See TracBrowser for help on using the repository browser.