source: tags/build-Alligator02/template/yoga/profile_content.tpl @ 1810

Last change on this file since 1810 was 1780, checked in by vdigital, 17 years ago

Yoga has input[type="submit"] style addressability restored.
(Since Javascript/Rating it was not possible to change button without loosing rating stars).
p0w0 is fix for a new button display.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.3 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      <li>
13        <span class="property">
14          <label for="mail_address">{lang:Email address}</label>
15        </span>
16        <input type="text" name="mail_address" id="mail_address" value="{EMAIL}">
17      </li>
18<!-- BEGIN not_admin -->
19      <li>
20        <span class="property">
21          <label for="password">{lang:Password}</label>
22        </span>
23        <input type="password" name="password" id="password" value="">
24      </li>
25<!-- END not_admin -->
26      <li>
27        <span class="property">
28          <label for="use_new_pwd">{lang:new_password}</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">{lang:Confirm Password}</label>
35        </span>
36        <input type="password" name="passwordConf" id="passwordConf" value="">
37      </li>
38    </ul>
39  </fieldset>
40
41  <fieldset>
42    <legend>{lang:preferences}</legend>
43
44    <ul>
45      <li>
46        <span class="property">
47          <label for="nb_image_line">{lang:nb_image_per_row}</label>
48        </span>
49        <input type="text" size="3" maxlength="2" name="nb_image_line" id="nb_image_line" value="{NB_IMAGE_LINE}">
50      </li>
51      <li>
52        <span class="property">
53          <label for="nb_line_page">{lang:nb_row_per_page}</label>
54        </span>
55        <input type="text" size="3" maxlength="2" name="nb_line_page" id="nb_line_page" value="{NB_ROW_PAGE}" >
56      </li>
57      <li>
58        <span class="property">
59          <label for="template">{lang:theme}</label>
60        </span>
61        <select name="template" id="template">
62          <!-- BEGIN template_option -->
63          <option value="{template_option.VALUE}" {template_option.SELECTED}>{template_option.CONTENT}</option>
64          <!-- END template_option -->
65        </select>
66      </li>
67      <li>
68        <span class="property">
69          <label for="language">{lang:language}</label>
70        </span>
71        <select name="language" id="language">
72          <!-- BEGIN language_option -->
73          <option value="{language_option.VALUE}" {language_option.SELECTED}>{language_option.CONTENT}</option>
74          <!-- END language_option -->
75        </select>
76      </li>
77      <li>
78        <span class="property">
79          <label for="recent_period">{lang:recent_period}</label>
80        </span>
81        <input type="text" size="3" maxlength="2" name="recent_period" id="recent_period" value="{RECENT_PERIOD}">
82      </li>
83      <li>
84        <span class="property">{lang:auto_expand}</span>
85        <label><input type="radio" name="expand" value="true" {EXPAND_TREE_YES}> {lang:yes}</label>
86        <label><input type="radio" name="expand" value="false" {EXPAND_TREE_NO}> {lang:no}</label>
87      </li>
88      <li>
89        <span class="property">{lang:show_nb_comments}</span>
90        <label><input type="radio" name="show_nb_comments" value="true" {NB_COMMENTS_YES}> {lang:yes}</label>
91        <label><input type="radio" name="show_nb_comments" value="false" {NB_COMMENTS_NO}> {lang:no}</label>
92      </li>
93      <li>
94        <span class="property">{lang:show_nb_hits}</span>
95        <label><input type="radio" name="show_nb_hits" value="true" {NB_HITS_YES}> {lang:yes}</label>
96        <label><input type="radio" name="show_nb_hits" value="false" {NB_HITS_NO}> {lang:no}</label>
97      </li>
98      <li>
99        <span class="property">
100          <label for="maxwidth">{lang:maxwidth}</label>
101        </span>
102        <input type="text" size="4" maxlength="4" name="maxwidth" id="maxwidth" value="{MAXWIDTH}">
103      </li>
104      <li>
105        <span class="property">
106          <label for="maxheight">{lang:maxheight}</label>
107        </span>
108        <input type="text" size="4" maxlength="4" name="maxheight" id="maxheight" value="{MAXHEIGHT}">
109      </li>
110    </ul>
111  </fieldset>
112
113  <p class="bottomButtons">
114    <input class="submit" type="submit" name="validate" value="{lang:submit}">
115    <input class="submit" type="reset" name="reset" value="{lang:reset}" class="reset">
116  </p>
117
118</form>
Note: See TracBrowser for help on using the repository browser.