source: branches/branch-1_7/template/yoga/profile_content.tpl @ 2179

Last change on this file since 2179 was 1926, checked in by rub, 17 years ago

Issue 578
User guest must be real user

Step 1: guest is a real user

On next commit, I finish installation and use of guest of user list and group

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1<form method="post" name="profile" action="{F_ACTION}" id="profile" class="properties">
2
3  <fieldset>
4    <legend>{lang:register_title}</legend>
5    <input type="hidden" name="userid" value="{USERID}" />
6    <input type="hidden" name="redirect" value="{REDIRECT}" />
7    <ul>
8      <li>
9        <span class="property">{lang:Username}</span>
10        {USERNAME}
11      </li>
12<!-- BEGIN not_special_user -->
13      <li>
14        <span class="property">
15          <label for="mail_address">{lang:Email address}</label>
16        </span>
17        <input type="text" name="mail_address" id="mail_address" value="{EMAIL}">
18      </li>
19<!-- BEGIN not_admin -->
20      <li>
21        <span class="property">
22          <label for="password">{lang:Password}</label>
23        </span>
24        <input type="password" name="password" id="password" value="">
25      </li>
26<!-- END not_admin -->
27      <li>
28        <span class="property">
29          <label for="use_new_pwd">{lang:new_password}</label>
30        </span>
31        <input type="password" name="use_new_pwd" id="use_new_pwd" value="">
32      </li>
33      <li>
34        <span class="property">
35          <label for="passwordConf">{lang:Confirm Password}</label>
36        </span>
37        <input type="password" name="passwordConf" id="passwordConf" value="">
38      </li>
39    </ul>
40<!-- END not_special_user -->
41  </fieldset>
42
43  <fieldset>
44    <legend>{lang:preferences}</legend>
45
46    <ul>
47      <li>
48        <span class="property">
49          <label for="nb_image_line">{lang:nb_image_per_row}</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">{lang:nb_row_per_page}</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">{lang:theme}</label>
62        </span>
63        <select name="template" id="template">
64          <!-- BEGIN template_option -->
65          <option value="{template_option.VALUE}" {template_option.SELECTED}>{template_option.CONTENT}</option>
66          <!-- END template_option -->
67        </select>
68      </li>
69      <li>
70        <span class="property">
71          <label for="language">{lang:language}</label>
72        </span>
73        <select name="language" id="language">
74          <!-- BEGIN language_option -->
75          <option value="{language_option.VALUE}" {language_option.SELECTED}>{language_option.CONTENT}</option>
76          <!-- END language_option -->
77        </select>
78      </li>
79      <li>
80        <span class="property">
81          <label for="recent_period">{lang:recent_period}</label>
82        </span>
83        <input type="text" size="3" maxlength="2" name="recent_period" id="recent_period" value="{RECENT_PERIOD}">
84      </li>
85      <li>
86        <span class="property">{lang:auto_expand}</span>
87        <label><input type="radio" name="expand" value="true" {EXPAND_TREE_YES}> {lang:yes}</label>
88        <label><input type="radio" name="expand" value="false" {EXPAND_TREE_NO}> {lang:no}</label>
89      </li>
90      <li>
91        <span class="property">{lang:show_nb_comments}</span>
92        <label><input type="radio" name="show_nb_comments" value="true" {NB_COMMENTS_YES}> {lang:yes}</label>
93        <label><input type="radio" name="show_nb_comments" value="false" {NB_COMMENTS_NO}> {lang:no}</label>
94      </li>
95      <li>
96        <span class="property">{lang:show_nb_hits}</span>
97        <label><input type="radio" name="show_nb_hits" value="true" {NB_HITS_YES}> {lang:yes}</label>
98        <label><input type="radio" name="show_nb_hits" value="false" {NB_HITS_NO}> {lang:no}</label>
99      </li>
100      <li>
101        <span class="property">
102          <label for="maxwidth">{lang:maxwidth}</label>
103        </span>
104        <input type="text" size="4" maxlength="4" name="maxwidth" id="maxwidth" value="{MAXWIDTH}">
105      </li>
106      <li>
107        <span class="property">
108          <label for="maxheight">{lang:maxheight}</label>
109        </span>
110        <input type="text" size="4" maxlength="4" name="maxheight" id="maxheight" value="{MAXHEIGHT}">
111      </li>
112    </ul>
113  </fieldset>
114
115  <p class="bottomButtons">
116    <input class="submit" type="submit" name="validate" value="{lang:submit}">
117    <input class="submit" type="reset" name="reset" value="{lang:reset}">
118  </p>
119
120</form>
Note: See TracBrowser for help on using the repository browser.