aboutsummaryrefslogtreecommitdiffstats
path: root/template/cclear/register.tpl
blob: 8bae0bc161def82cd984c1a2534f57a8c4a74964 (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
<h2>{L_TITLE}</h2>
<!-- TO DO -->
<!-- It's easy, just lok at identification.tpl ;-) -->

<form method="post" action="{F_ACTION}">
  <table style="width:60%;" align="center">
	<!-- BEGIN errors -->
  <tr>
	<td colspan="2">
	  <div class="errors">
		<ul>
		  <!-- BEGIN error -->
		  <li>{errors.error.ERROR}</li>
		  <!-- END error -->
		</ul>
	  </div>
	</td>
  </tr>
  <!-- END errors -->
	<tr>
	  <td width="60%">{L_USERNAME}</td>
	  <td width="40%">
		<input type="text" name="login" value="{F_LOGIN}" />
	  </td>
	</tr>
	<tr>
	  <td >{L_PASSWORD}</td>
	  <td >
		<input type="password" name="password" />
	  </td>
	</tr>
	<tr>
	  <td >{L_CONFIRM_PASSWORD}</td>
	  <td >
		<input type="password" name="password_conf" />
	  </td>
	</tr>
	<tr>
	  <td >{L_EMAIL}</td>
	  <td >
		<input type="text" name="mail_address" value="{F_EMAIL}" />
	  </td>
	</tr>
	<tr>
	  <td colspan="2">&nbsp;</td>
	</tr>
	<tr>
	<tr>
	  <td colspan="2" align="center">
		<input type="submit" name="submit" value="{L_SUBMIT}" class="bouton" />
	  </td>
	</tr>
	<tr>
	  <td colspan="2" align="center">
		<a href="./category.php">[ {L_GUEST} ]</a>
	  </td>
	</tr>
  </table>
</form>