1 | <div id="registerPage"> |
---|
2 | |
---|
3 | <div id="content" class="content"> |
---|
4 | |
---|
5 | <div class="titrePage"> |
---|
6 | <ul class="categoryActions"> |
---|
7 | <li><a href="{$U_HOME}" title="{'Home'|@translate}" class="pwg-state-default pwg-button"> |
---|
8 | <span class="pwg-icon pwg-icon-home"> </span><span class="pwg-button-text">{'Home'|@translate}</span> |
---|
9 | </a></li> |
---|
10 | </ul> |
---|
11 | <h2>{'Registration'|@translate}</h2> |
---|
12 | </div> |
---|
13 | |
---|
14 | {if isset($errors)} |
---|
15 | <div class="errors"> |
---|
16 | <ul> |
---|
17 | {foreach from=$errors item=error} |
---|
18 | <li>{$error}</li> |
---|
19 | {/foreach} |
---|
20 | </ul> |
---|
21 | </div> |
---|
22 | {/if} |
---|
23 | |
---|
24 | <form method="post" action="{$F_ACTION}" class="properties" name="register_form"> |
---|
25 | <fieldset> |
---|
26 | <legend>{'Enter your personnal informations'|@translate}</legend> |
---|
27 | |
---|
28 | <ul> |
---|
29 | <li> |
---|
30 | <span class="property"> |
---|
31 | <label for="login">* {'Username'|@translate}</label> |
---|
32 | </span> |
---|
33 | <input type="text" name="login" id="login" value="{$F_LOGIN}" > |
---|
34 | </li> |
---|
35 | <li> |
---|
36 | <span class="property"> |
---|
37 | <label for="password">* {'Password'|@translate}</label> |
---|
38 | </span> |
---|
39 | <input type="password" name="password" id="password" > |
---|
40 | </li> |
---|
41 | <li> |
---|
42 | <span class="property"> |
---|
43 | <label for="password_conf">* {'Confirm Password'|@translate}</label> |
---|
44 | </span> |
---|
45 | <input type="password" name="password_conf" id="password_conf" > |
---|
46 | </li> |
---|
47 | <li> |
---|
48 | <span class="property"> |
---|
49 | <label for="mail_address">{'Email address'|@translate}</label> |
---|
50 | </span> |
---|
51 | <input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" > |
---|
52 | ({'useful when password forgotten'|@translate}) |
---|
53 | </li> |
---|
54 | </ul> |
---|
55 | |
---|
56 | </fieldset> |
---|
57 | |
---|
58 | <p class="bottomButtons"> |
---|
59 | <input type="hidden" name="key" value="{$F_KEY}" > |
---|
60 | <input class="submit" type="submit" name="submit" value="{'Register'|@translate}"> |
---|
61 | <input class="submit" type="reset" value="{'Reset'|@translate}"> |
---|
62 | </p> |
---|
63 | |
---|
64 | </form> |
---|
65 | |
---|
66 | <script type="text/javascript"><!-- |
---|
67 | document.register_form.login.focus(); |
---|
68 | //--></script> |
---|
69 | |
---|
70 | </div> <!-- content --> |
---|
71 | </div> <!-- registerPage --> |
---|