source: trunk/template/default/profile.tpl @ 369

Last change on this file since 369 was 364, checked in by gweltas, 21 years ago

Split of langage files

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.7 KB
Line 
1    <table style="width:100%;height:100%">
2      <tr align="center" valign="middle">
3        <td>
4          {T_START}1px{T_BEGIN}
5            <div class="titrePage">{L_TITLE}</div>
6          {T_END}
7          <div style="margin-bottom:20px"></div>
8          {T_START}50%{T_BEGIN}
9            <form method="post" action="{F_ACTION}">
10              <table style="width:100%;margin-top:10px;margin-bottom:10px;">
11                <tr align="center" valign="middle">
12                  <td>
13                    <table width="80%">
14                      <!-- BEGIN errors -->
15                      <tr>
16                        <td colspan="2">
17                          <div class="errors">
18                            <ul>
19                              <!-- BEGIN error -->
20                              <li>{errors.error.ERROR}</li>
21                              <!-- END error -->
22                            </ul>
23                          </div>
24                        </td>
25                      </tr>
26                      <!-- END errors -->
27                                          <!-- BEGIN select -->
28                      <tr>
29                        <td class="menu">{select.F_LABEL}</td>
30                        <td class="menu">
31                          <select name="{select.F_NAME}">
32                            {select.F_OPTIONS}
33                          </select>
34                                                </td>
35                                          </tr>
36                                          <!-- END select -->
37                                          <!-- BEGIN text -->
38                      <tr>
39                        <td class="menu">{text.F_LABEL}</td>
40                        <td class="menu">
41                          <input type="text" name="{text.F_NAME}" value="{text.F_VALUE}" />
42                                                </td>
43                                          </tr>
44                                          <!-- END text -->
45                                          <!-- BEGIN radio -->
46                      <tr>
47                        <td class="menu">{radio.F_LABEL}</td>
48                        <td class="menu">
49                                                  {radio.F_OPTIONS}
50                                                </td>
51                                          </tr>
52                                          <!-- END radio -->
53                      <tr>
54                        <td colspan="2">&nbsp;</td>
55                      </tr>
56                      <tr>
57                        <td class="menu">{L_NEW} {L_PASSWORD} <input type="checkbox" name="use_new_pwd" value="1" /></td>
58                        <td class="menu"><input type="password" name="password" value="" /></td>
59                      </tr>
60                      <tr>
61                        <td class="menu">{L_CONFIRM}</td>
62                        <td class="menu"><input type="password" name="passwordConf" value="" /></td>
63                      </tr>
64                      <!-- BEGIN cookie -->
65                      <tr>
66                        <td colspan="2">&nbsp;</td>
67                      </tr>
68                      <tr>
69                        <td class="menu">{L_COOKIE} <input type="checkbox" name="create_cookie" value="1" /></td>
70                        <td class="menu">
71                          <select name="cookie_expiration">
72                          <!-- BEGIN expiration_option -->
73                            <option value="{#value}">{#option}</option>
74                          <!-- END expiration_option -->
75                          </select>
76                        </td>
77                      </tr>
78                      <!-- END cookie -->
79                      <tr>
80                        <td colspan="2">&nbsp;</td>
81                      </tr>
82                      <tr>
83                        <td colspan="2" align="center">
84                          <input type="submit" name="submit" value="{L_SUBMIT}" style="margin:5px;"/>
85                        </td>
86                      </tr>
87                    </table>
88                  </td>
89                </tr>
90              </table>
91            </form>
92          {T_END}
93</td>
94      </tr>
95    </table>
Note: See TracBrowser for help on using the repository browser.