blob: 09ed0d5770af016886d471eb2b41fb21c19838f0 (
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
60
61
62
63
64
65
66
67
68
69
|
{if isset($MENUBAR)}{$MENUBAR}{/if}
<div id="registerPage">
<div id="content" class="content{if isset($MENUBAR)} contentWithMenu{/if}">
<div class="titrePage">
<ul class="categoryActions">
</ul>
<h2><a href="{$U_HOME}">{'Home'|@translate}</a>{$LEVEL_SEPARATOR}{'Registration'|@translate}</h2>
</div>
{include file='infos_errors.tpl'}
<form method="post" action="{$F_ACTION}" class="properties" name="register_form">
<fieldset>
<legend>{'Enter your personnal informations'|@translate}</legend>
<ul>
<li>
<span class="property">
<label for="login">* {'Username'|@translate}</label>
</span>
<input type="text" name="login" id="login" value="{$F_LOGIN}" >
</li>
<li>
<span class="property">
<label for="password">* {'Password'|@translate}</label>
</span>
<input type="password" name="password" id="password" >
</li>
<li>
<span class="property">
<label for="password_conf">* {'Confirm Password'|@translate}</label>
</span>
<input type="password" name="password_conf" id="password_conf" >
</li>
<li>
<span class="property">
<label for="mail_address">{if $obligatory_user_mail_address}* {/if}{'Email address'|@translate}</label>
</span>
<input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" >
{if not $obligatory_user_mail_address}
({'useful when password forgotten'|@translate})
{/if}
</li>
<li>
<span class="property">
<label for="send_password_by_mail">{'Send my connection settings by email'|@translate}</label>
</span>
<input type="checkbox" name="send_password_by_mail" id="send_password_by_mail" value="1" checked="checked">
</li>
</ul>
</fieldset>
<p class="bottomButtons">
<input type="hidden" name="key" value="{$F_KEY}" >
<input class="submit" type="submit" name="submit" value="{'Register'|@translate}">
<input class="submit" type="reset" value="{'Reset'|@translate}">
</p>
</form>
<script type="text/javascript"><!--
document.register_form.login.focus();
//--></script>
</div> <!-- content -->
</div> <!-- registerPage -->
|