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

Last change on this file since 1719 was 1620, checked in by rvelices, 18 years ago

some language cleanup

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
RevLine 
[859]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">
[960]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>
[859]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>
[1620]23    <legend>{lang:register_title}</legend>
[1244]24    <input type="hidden" name="userid" value="{USERID}" />
[859]25    <ul>
26      <li>
[1129]27        <span class="property">{lang:Username}</span>
28        {USERNAME}
[859]29      </li>
30      <li>
[1129]31        <span class="property">
32          <label for="mail_address">{lang:Email address}</label>
33        </span>
[1491]34        <input type="text" name="mail_address" id="mail_address" value="{EMAIL}">
[859]35      </li>
36      <li>
[1129]37        <span class="property">
[1620]38          <label for="password">{lang:Password}</label>
[1129]39        </span>
[1491]40        <input type="password" name="password" id="password" value="">
[859]41      </li>
42      <li>
[1129]43        <span class="property">
[1620]44          <label for="use_new_pwd">{lang:new_password}</label>
[1129]45        </span>
[1491]46        <input type="password" name="use_new_pwd" id="use_new_pwd" value="">
[859]47      </li>
48      <li>
[1129]49        <span class="property">
[1620]50          <label for="passwordConf">{lang:Confirm Password}</label>
[1129]51        </span>
[1491]52        <input type="password" name="passwordConf" id="passwordConf" value="">
[859]53      </li>
54    </ul>
55  </fieldset>
56
57  <fieldset>
[1620]58    <legend>{lang:preferences}</legend>
[859]59
60    <ul>
61      <li>
[1129]62        <span class="property">
[1620]63          <label for="nb_image_line">{lang:nb_image_per_row}</label>
[1129]64        </span>
[1491]65        <input type="text" size="3" maxlength="2" name="nb_image_line" id="nb_image_line" value="{NB_IMAGE_LINE}">
[859]66      </li>
67      <li>
[1129]68        <span class="property">
[1620]69          <label for="nb_line_page">{lang:nb_row_per_page}</label>
[1129]70        </span>
[1491]71        <input type="text" size="3" maxlength="2" name="nb_line_page" id="nb_line_page" value="{NB_ROW_PAGE}" >
[859]72      </li>
73      <li>
[1129]74        <span class="property">
[1620]75          <label for="template">{lang:theme}</label>
[1129]76        </span>
[1491]77        <select name="template" id="template">
[859]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>
[1129]84        <span class="property">
[1620]85          <label for="language">{lang:language}</label>
[1129]86        </span>
[1491]87        <select name="language" id="language">
[859]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>
[1129]94        <span class="property">
[1620]95          <label for="recent_period">{lang:recent_period}</label>
[1129]96        </span>
[1491]97        <input type="text" size="3" maxlength="2" name="recent_period" id="recent_period" value="{RECENT_PERIOD}">
[859]98      </li>
99      <li>
[1620]100        <span class="property">{lang:auto_expand}</span>
101        <label><input type="radio" name="expand" value="true" {EXPAND_TREE_YES}> {lang:yes}</label>
102        <label><input type="radio" name="expand" value="false" {EXPAND_TREE_NO}> {lang:no}</label>
[859]103      </li>
104      <li>
[1620]105        <span class="property">{lang:show_nb_comments}</span>
106        <label><input type="radio" name="show_nb_comments" value="true" {NB_COMMENTS_YES}> {lang:yes}</label>
107        <label><input type="radio" name="show_nb_comments" value="false" {NB_COMMENTS_NO}> {lang:no}</label>
[859]108      </li>
109      <li>
[1129]110        <span class="property">
[1620]111          <label for="maxwidth">{lang:maxwidth}</label>
[1129]112        </span>
[1491]113        <input type="text" size="4" maxlength="4" name="maxwidth" id="maxwidth" value="{MAXWIDTH}">
[859]114      </li>
115      <li>
[1129]116        <span class="property">
[1620]117          <label for="maxheight">{lang:maxheight}</label>
[1129]118        </span>
[1491]119        <input type="text" size="4" maxlength="4" name="maxheight" id="maxheight" value="{MAXHEIGHT}">
[859]120      </li>
121    </ul>
122  </fieldset>
123
124  <p class="bottomButtons">
[1620]125    <input type="submit" name="validate" value="{lang:submit}">
126    <input type="reset" name="reset" value="{lang:reset}" class="reset">
[859]127  </p>
128
129</form>
130
131</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.