aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/profile.tpl
blob: 400078474d3b6e914de5250742a287b8986786eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<div id="content">

<!-- BEGIN errors -->
<div class="errors">
  <ul>
    <!-- BEGIN error -->
    <li>{errors.error.ERROR}</li>
    <!-- END error -->
  </ul>
</div>
<!-- END errors -->

  <div class="titrePage">
    <ul class="categoryActions">
      <li><a href="{U_RETURN}" title="{lang:return to homepage}"><img src="./template/yoga/theme/home.png" alt="{lang:home}"/></a></li>
    </ul>
    <h2>{lang:Profile}</h2>
  </div>

<form method="post" name="profile" action="{F_ACTION}" id="profile" class="properties">

  <input type="hidden" name="userid" value="{USERID}" />

  <fieldset>
    <legend>{L_REGISTRATION_INFO}</legend>

    <ul>
      <li>
        <label>{lang:Username}</label>
        <strong>{USERNAME}</strong>
      </li>

      <li>
        <label for="mail_address">{lang:Email address}</label>
        <input type="text" name="mail_address" id="mail_address" value="{EMAIL}" onfocus="this.className='focus';" onblur="this.className='nofocus';">
      </li>

      <li>
        <label for="password">{L_CURRENT_PASSWORD}</label>
        <input type="password" name="password" id="password" value="" onfocus="this.className='focus';" onblur="this.className='nofocus';">
      </li>

      <li>
        <label for="use_new_pwd">{L_NEW_PASSWORD}</label>
        <input type="password" name="use_new_pwd" id="use_new_pwd" value="" onfocus="this.className='focus';" onblur="this.className='nofocus';">
      </li>

      <li>
        <label for="passwordConf">{L_CONFIRM_PASSWORD}</label>
        <input type="password" name="passwordConf" id="passwordConf" value="" onfocus="this.className='focus';" onblur="this.className='nofocus';">
      </li>
    </ul>
  </fieldset>

  <fieldset>
    <legend>{L_PREFERENCES}</legend>

    <ul>
      <li>
        <label for="nb_image_line">{L_NB_IMAGE_LINE}</label>
        <input type="text" size="3" maxlength="2" name="nb_image_line" id="nb_image_line" value="{NB_IMAGE_LINE}"
               onfocus="this.className='focus';" onblur="this.className='nofocus';">
      </li>

      <li>
        <label for="nb_line_page">{L_NB_ROW_PAGE}</label>
        <input type="text" size="3" maxlength="2" name="nb_line_page" id="nb_line_page" value="{NB_ROW_PAGE}"
               onfocus="this.className='focus';" onblur="this.className='nofocus';">
      </li>

      <li>
        <label for="template">{L_STYLE_SELECT}</label>
        <select name="template" id="template"> <!-- FIXME: if onfocus is used, the behaviour becomes weird in Firefox -->
          <!-- BEGIN template_option -->
          <option value="{template_option.VALUE}" {template_option.SELECTED}>{template_option.CONTENT}</option>
          <!-- END template_option -->
        </select>
      </li>

      <li>
        <label for="language">{L_LANG_SELECT}</label>
        <select name="language" id="language"> <!-- same FIXME -->
          <!-- BEGIN language_option -->
          <option value="{language_option.VALUE}" {language_option.SELECTED}>{language_option.CONTENT}</option>
          <!-- END language_option -->
        </select>
      </li>

      <li>
        <label for="recent_period">{L_RECENT_PERIOD}</label>
        <input type="text" size="3" maxlength="2" name="recent_period" id="recent_period" value="{RECENT_PERIOD}"
               onfocus="this.className='focus';" onblur="this.className='nofocus';">
      </li>

      <li>
        <label>{L_EXPAND_TREE}</label>
        <input type="radio" class="radio" name="expand" value="true" {EXPAND_TREE_YES}> {L_YES}
        <input type="radio" class="radio" name="expand" value="false" {EXPAND_TREE_NO}> {L_NO}
      </li>

      <li>
        <label>{L_NB_COMMENTS}</label>
        <input type="radio" class="radio" name="show_nb_comments" value="true" {NB_COMMENTS_YES}> {L_YES}
        <input type="radio" class="radio" name="show_nb_comments" value="false" {NB_COMMENTS_NO}> {L_NO}
      </li>
 
      <li>
        <label for"maxwidth">{L_MAXWIDTH}</label>
        <input type="text" size="4" maxlength="4" name="maxwidth" id="maxwidth" value="{MAXWIDTH}"
               onfocus="this.className='focus';" onblur="this.className='nofocus';">
      </li>

      <li>
        <label for="maxheight">{L_MAXHEIGHT}</label>
        <input type="text" size="4" maxlength="4" name="maxheight" id="maxheight" value="{MAXHEIGHT}"
               onfocus="this.className='focus';" onblur="this.className='nofocus';">
      </li>
    </ul>
  </fieldset>

  <p class="bottomButtons">
    <input type="submit" name="validate" value="{L_SUBMIT}">
    <input type="reset" name="reset" value="{L_RESET}">
  </p>

</form>

</div> <!-- content -->