source: trunk/template/cclear/register.tpl @ 829

Last change on this file since 829 was 820, checked in by chrisaga, 19 years ago

Let's begin the new customizable clear template :-)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1<h2>{L_TITLE}</h2>
2<!-- TO DO -->
3<!-- It's easy, just lok at identification.tpl ;-) -->
4
5<form method="post" action="{F_ACTION}">
6  <table style="width:60%;" align="center">
7        <!-- BEGIN errors -->
8  <tr>
9        <td colspan="2">
10          <div class="errors">
11                <ul>
12                  <!-- BEGIN error -->
13                  <li>{errors.error.ERROR}</li>
14                  <!-- END error -->
15                </ul>
16          </div>
17        </td>
18  </tr>
19  <!-- END errors -->
20        <tr>
21          <td width="60%">{L_USERNAME}</td>
22          <td width="40%">
23                <input type="text" name="login" value="{F_LOGIN}" />
24          </td>
25        </tr>
26        <tr>
27          <td >{L_PASSWORD}</td>
28          <td >
29                <input type="password" name="password" />
30          </td>
31        </tr>
32        <tr>
33          <td >{L_CONFIRM_PASSWORD}</td>
34          <td >
35                <input type="password" name="password_conf" />
36          </td>
37        </tr>
38        <tr>
39          <td >{L_EMAIL}</td>
40          <td >
41                <input type="text" name="mail_address" value="{F_EMAIL}" />
42          </td>
43        </tr>
44        <tr>
45          <td colspan="2">&nbsp;</td>
46        </tr>
47        <tr>
48        <tr>
49          <td colspan="2" align="center">
50                <input type="submit" name="submit" value="{L_SUBMIT}" class="bouton" />
51          </td>
52        </tr>
53        <tr>
54          <td colspan="2" align="center">
55                <a href="./category.php">[ {L_GUEST} ]</a>
56          </td>
57        </tr>
58  </table>
59</form>
Note: See TracBrowser for help on using the repository browser.