source: branches/branch-1_6/template/yoga/profile.tpl @ 1492

Last change on this file since 1492 was 1492, checked in by chrisaga, 18 years ago

merge from trunk r1490:1491 into branch 1.6 (fix bugs 484 and 244 display issues with IE : focus, checkboxe radio)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.3 KB
Line 
1<div id="content">
2
3<!-- BEGIN errors -->
4<div class="errors">
5  <ul>
6    <!-- BEGIN error -->
7    <li>{errors.error.ERROR}</li>
8    <!-- END error -->
9  </ul>
10</div>
11<!-- END errors -->
12
13  <div class="titrePage">
14    <ul class="categoryActions">
15      <li><a href="{U_RETURN}" title="{lang:return to homepage}"><img src="{themeconf:icon_dir}/home.png" class="button" alt="{lang:home}"/></a></li>
16    </ul>
17    <h2>{lang:Profile}</h2>
18  </div>
19
20<form method="post" name="profile" action="{F_ACTION}" id="profile" class="properties">
21
22  <fieldset>
23    <legend>{L_REGISTRATION_INFO}</legend>
24    <input type="hidden" name="userid" value="{USERID}" />
25    <ul>
26      <li>
27        <span class="property">{lang:Username}</span>
28        {USERNAME}
29      </li>
30      <li>
31        <span class="property">
32          <label for="mail_address">{lang:Email address}</label>
33        </span>
34        <input type="text" name="mail_address" id="mail_address" value="{EMAIL}">
35      </li>
36      <li>
37        <span class="property">
38          <label for="password">{L_CURRENT_PASSWORD}</label>
39        </span>
40        <input type="password" name="password" id="password" value="">
41      </li>
42      <li>
43        <span class="property">
44          <label for="use_new_pwd">{L_NEW_PASSWORD}</label>
45        </span>
46        <input type="password" name="use_new_pwd" id="use_new_pwd" value="">
47      </li>
48      <li>
49        <span class="property">
50          <label for="passwordConf">{L_CONFIRM_PASSWORD}</label>
51        </span>
52        <input type="password" name="passwordConf" id="passwordConf" value="">
53      </li>
54    </ul>
55  </fieldset>
56
57  <fieldset>
58    <legend>{L_PREFERENCES}</legend>
59
60    <ul>
61      <li>
62        <span class="property">
63          <label for="nb_image_line">{L_NB_IMAGE_LINE}</label>
64        </span>
65        <input type="text" size="3" maxlength="2" name="nb_image_line" id="nb_image_line" value="{NB_IMAGE_LINE}">
66      </li>
67      <li>
68        <span class="property">
69          <label for="nb_line_page">{L_NB_ROW_PAGE}</label>
70        </span>
71        <input type="text" size="3" maxlength="2" name="nb_line_page" id="nb_line_page" value="{NB_ROW_PAGE}" >
72      </li>
73      <li>
74        <span class="property">
75          <label for="template">{L_STYLE_SELECT}</label>
76        </span>
77        <select name="template" id="template">
78          <!-- BEGIN template_option -->
79          <option value="{template_option.VALUE}" {template_option.SELECTED}>{template_option.CONTENT}</option>
80          <!-- END template_option -->
81        </select>
82      </li>
83      <li>
84        <span class="property">
85          <label for="language">{L_LANG_SELECT}</label>
86        </span>
87        <select name="language" id="language">
88          <!-- BEGIN language_option -->
89          <option value="{language_option.VALUE}" {language_option.SELECTED}>{language_option.CONTENT}</option>
90          <!-- END language_option -->
91        </select>
92      </li>
93      <li>
94        <span class="property">
95          <label for="recent_period">{L_RECENT_PERIOD}</label>
96        </span>
97        <input type="text" size="3" maxlength="2" name="recent_period" id="recent_period" value="{RECENT_PERIOD}">
98      </li>
99      <li>
100        <span class="property">{L_EXPAND_TREE}</span>
101        <label><input type="radio" name="expand" value="true" {EXPAND_TREE_YES}> {L_YES}</label>
102        <label><input type="radio" name="expand" value="false" {EXPAND_TREE_NO}> {L_NO}</label>
103      </li>
104      <li>
105        <span class="property">{L_NB_COMMENTS}</span>
106        <label><input type="radio" name="show_nb_comments" value="true" {NB_COMMENTS_YES}> {L_YES}</label>
107        <label><input type="radio" name="show_nb_comments" value="false" {NB_COMMENTS_NO}> {L_NO}</label>
108      </li>
109      <li>
110        <span class="property">
111          <label for="maxwidth">{L_MAXWIDTH}</label>
112        </span>
113        <input type="text" size="4" maxlength="4" name="maxwidth" id="maxwidth" value="{MAXWIDTH}">
114      </li>
115      <li>
116        <span class="property">
117          <label for="maxheight">{L_MAXHEIGHT}</label>
118        </span>
119        <input type="text" size="4" maxlength="4" name="maxheight" id="maxheight" value="{MAXHEIGHT}">
120      </li>
121    </ul>
122  </fieldset>
123
124  <p class="bottomButtons">
125    <input type="submit" name="validate" value="{L_SUBMIT}">
126    <input type="reset" name="reset" value="{L_RESET}" class="reset">
127  </p>
128
129</form>
130
131</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.