source: trunk/template/yoga/profile.tpl @ 1376

Last change on this file since 1376 was 1244, checked in by nikrou, 18 years ago

html bug fixed
svn merge -r1238:1240,1242 from branch-1_6 into trunk

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.2 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
31      <li>
32        <span class="property">
33          <label for="mail_address">{lang:Email address}</label>
34        </span>
35        <input type="text" name="mail_address" id="mail_address" value="{EMAIL}" onfocus="this.className='focus';" onblur="this.className='nofocus';">
36      </li>
37
38      <li>
39        <span class="property">
40          <label for="password">{L_CURRENT_PASSWORD}</label>
41        </span>
42        <input type="password" name="password" id="password" value="" onfocus="this.className='focus';" onblur="this.className='nofocus';">
43      </li>
44
45      <li>
46        <span class="property">
47          <label for="use_new_pwd">{L_NEW_PASSWORD}</label>
48        </span>
49        <input type="password" name="use_new_pwd" id="use_new_pwd" value="" onfocus="this.className='focus';" onblur="this.className='nofocus';">
50      </li>
51
52      <li>
53        <span class="property">
54          <label for="passwordConf">{L_CONFIRM_PASSWORD}</label>
55        </span>
56        <input type="password" name="passwordConf" id="passwordConf" value="" onfocus="this.className='focus';" onblur="this.className='nofocus';">
57      </li>
58    </ul>
59  </fieldset>
60
61  <fieldset>
62    <legend>{L_PREFERENCES}</legend>
63
64    <ul>
65      <li>
66        <span class="property">
67          <label for="nb_image_line">{L_NB_IMAGE_LINE}</label>
68        </span>
69        <input type="text" size="3" maxlength="2" name="nb_image_line" id="nb_image_line" value="{NB_IMAGE_LINE}"
70               onfocus="this.className='focus';" onblur="this.className='nofocus';">
71      </li>
72
73      <li>
74        <span class="property">
75          <label for="nb_line_page">{L_NB_ROW_PAGE}</label>
76        </span>
77        <input type="text" size="3" maxlength="2" name="nb_line_page" id="nb_line_page" value="{NB_ROW_PAGE}"
78               onfocus="this.className='focus';" onblur="this.className='nofocus';">
79      </li>
80
81      <li>
82        <span class="property">
83          <label for="template">{L_STYLE_SELECT}</label>
84        </span>
85        <select name="template" id="template" onfocus="this.className='focus';" onblur="this.className='nofocus';">
86          <!-- BEGIN template_option -->
87          <option value="{template_option.VALUE}" {template_option.SELECTED}>{template_option.CONTENT}</option>
88          <!-- END template_option -->
89        </select>
90      </li>
91
92      <li>
93        <span class="property">
94          <label for="language">{L_LANG_SELECT}</label>
95        </span>
96        <select name="language" id="language" onfocus="this.className='focus';" onblur="this.className='nofocus';">
97          <!-- BEGIN language_option -->
98          <option value="{language_option.VALUE}" {language_option.SELECTED}>{language_option.CONTENT}</option>
99          <!-- END language_option -->
100        </select>
101      </li>
102
103      <li>
104        <span class="property">
105          <label for="recent_period">{L_RECENT_PERIOD}</label>
106        </span>
107        <input type="text" size="3" maxlength="2" name="recent_period" id="recent_period" value="{RECENT_PERIOD}"
108               onfocus="this.className='focus';" onblur="this.className='nofocus';">
109      </li>
110
111      <li>
112        <span class="property">{L_EXPAND_TREE}</span>
113        <label><input type="radio" class="radio" name="expand" value="true" {EXPAND_TREE_YES}> {L_YES}</label>
114        <label><input type="radio" class="radio" name="expand" value="false" {EXPAND_TREE_NO}> {L_NO}</label>
115      </li>
116
117      <li>
118        <span class="property">{L_NB_COMMENTS}</span>
119        <label><input type="radio" class="radio" name="show_nb_comments" value="true" {NB_COMMENTS_YES}> {L_YES}</label>
120        <label><input type="radio" class="radio" name="show_nb_comments" value="false" {NB_COMMENTS_NO}> {L_NO}</label>
121      </li>
122 
123      <li>
124        <span class="property">
125          <label for="maxwidth">{L_MAXWIDTH}</label>
126        </span>
127        <input type="text" size="4" maxlength="4" name="maxwidth" id="maxwidth" value="{MAXWIDTH}"
128               onfocus="this.className='focus';" onblur="this.className='nofocus';">
129      </li>
130
131      <li>
132        <span class="property">
133          <label for="maxheight">{L_MAXHEIGHT}</label>
134        </span>
135        <input type="text" size="4" maxlength="4" name="maxheight" id="maxheight" value="{MAXHEIGHT}"
136               onfocus="this.className='focus';" onblur="this.className='nofocus';">
137      </li>
138    </ul>
139  </fieldset>
140
141  <p class="bottomButtons">
142    <input type="submit" name="validate" value="{L_SUBMIT}">
143    <input type="reset" name="reset" value="{L_RESET}">
144  </p>
145
146</form>
147
148</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.