blob: 22011103f29377e730eec876edde5b0f1ed93ae7 (
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
|
<div class="titrePage">{L_TITLE}</div>
<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"> </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>
|