source: trunk/template/cclear/profile.tpl @ 843

Last change on this file since 843 was 837, checked in by chrisaga, 19 years ago

cclear template almost working good for BSF

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1<!-- BEGIN errors -->
2<div class="errors">
3  <ul>
4    <!-- BEGIN error -->
5    <li>{errors.error.ERROR}</li>
6    <!-- END error -->
7  </ul>
8</div>
9<!-- END errors -->
10
11<h2>{L_TITLE}</h2>
12
13<div class="formbox">
14<form method="post" name="profile" action="{F_ACTION}" id="profile">
15
16  <p><input type="hidden" name="userid" value="{USERID}" /></p>
17
18  <h3>{L_REGISTRATION_INFO}</h3>
19  <dl>
20    <dt width="50%">{L_USERNAME}</dt>
21    <dd>{USERNAME}</dd>
22    <dt>{L_EMAIL}</dt>
23    <dd><input type="text" name="mail_address" value="{EMAIL}" /></dd>
24  </dl>
25  <dl class="biglabel">
26    <dt>{L_CURRENT_PASSWORD} : <br /><span class="small">{L_CURRENT_PASSWORD_HINT}</span></dt>
27    <dd><input type="password" name="password" value="" /></dd>
28  </dl>
29  <dl class="biglabel">
30    <dt>{L_NEW_PASSWORD} : <br /><span class="small">{L_NEW_PASSWORD_HINT}</span></dt>
31    <dd><input type="password" name="use_new_pwd" value="" /></dd>
32  </dl>
33  <dl class="biglabel">
34    <dt>{L_CONFIRM_PASSWORD} : <br /><span class="small">{L_CONFIRM_PASSWORD_HINT}</span></dt>
35    <dd><input type="password" name="passwordConf" value="" /></dd>
36  </dl>
37  <h3>{L_PREFERENCES}</h3>
38  <dl>
39    <dt>{L_NB_IMAGE_LINE}</dt>
40    <dd>
41      <input type="text" size="3" maxlength="2" name="nb_image_line" value="{NB_IMAGE_LINE}" />
42    </dd>
43    <dt>{L_NB_ROW_PAGE}</dt>
44    <dd>
45      <input type="text" size="3" maxlength="2" name="nb_line_page" value="{NB_ROW_PAGE}" />
46    </dd>
47    <dt>{L_STYLE_SELECT}</dt>
48    <dd>
49      {STYLE_SELECT}
50    </dd>
51    <dt>{L_LANG_SELECT}</dt>
52    <dd>
53      {LANG_SELECT}
54    </dd>
55    <dt>{L_RECENT_PERIOD}</dt>
56    <dd>
57      <input type="text" size="3" maxlength="2" name="recent_period" value="{RECENT_PERIOD}" />
58    </dd>
59    <dt>{L_EXPAND_TREE}</dt>
60    <dd>
61      <input type="radio" class="radio" name="expand" value="true" {EXPAND_TREE_YES} />{L_YES}&nbsp;&nbsp;
62      <input type="radio" class="radio" name="expand" value="false" {EXPAND_TREE_NO} />{L_NO}
63    </dd>
64    <dt>{L_NB_COMMENTS}</dt>
65    <dd>
66      <input type="radio" class="radio" name="show_nb_comments" value="true" {NB_COMMENTS_YES} />{L_YES}&nbsp;&nbsp;
67      <input type="radio" class="radio" name="show_nb_comments" value="false" {NB_COMMENTS_NO} />{L_NO}
68    </dd>
69    <dt>{L_MAXWIDTH}</dt>
70    <dd>
71      <input type="text" size="4" maxlength="4" name="maxwidth" value="{MAXWIDTH}" />
72    </dd>
73    <dt>{L_MAXHEIGHT}</dt>
74    <dd>
75      <input type="text" size="4" maxlength="4" name="maxheight" value="{MAXHEIGHT}" />
76    </dd>
77  </dl>
78
79  <p>
80    <input type="submit" name="validate" value="{L_SUBMIT}" class="bouton" />
81    <input type="reset" name="reset" value="{L_RESET}" class="bouton" />
82  </p>
83</form>
84
85  <p><a href="{U_RETURN}" title="{L_RETURN_HINT}">[{L_RETURN}]</a></p>
86</div>
Note: See TracBrowser for help on using the repository browser.