source: branches/2.5/themes/smartpocket/template/register.tpl @ 23659

Last change on this file since 23659 was 23659, checked in by flop25, 11 years ago

merge svn:23658 from trunk to 2.5
bug:2934
wrong id/name for the username input

File size: 1.4 KB
Line 
1{include file='infos_errors.tpl'}
2<div data-role="content">
3<h3>{'Register'|@translate}</h3>
4<form method="post" action="{$F_ACTION}" class="properties" name="register_form">
5
6  <div data-role="fieldcontain">
7  <label for="login">* {'Username'|@translate}</label>
8  <input type="text" name="login" id="login" value="{$F_LOGIN}">
9  </div>
10
11  <div data-role="fieldcontain">
12  <label for="password">* {'Password'|@translate}</label>
13  <input type="password" name="password" id="password">
14  </div>
15
16  <div data-role="fieldcontain">
17  <label for="password_conf">* {'Confirm Password'|@translate}</label>
18  <input type="password" name="password_conf" id="password_conf">
19  </div>
20
21  <div data-role="fieldcontain">
22  <label for="mail_address">{if $obligatory_user_mail_address}* {/if}{'Email address'|@translate}</label>
23  <input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" >
24  </div>
25
26  <div data-role="fieldcontain">
27  <label for="send_password_by_mail">{'Send my connection settings by email'|@translate}</label>
28  <input type="checkbox" name="send_password_by_mail" id="send_password_by_mail" value="1" checked="checked">
29  </div>
30
31  <div data-role="fieldcontain">
32                <input type="hidden" name="key" value="{$F_KEY}" >
33    <input class="submit" type="submit" name="submit" value="{'Register'|@translate}">
34    <input class="submit" type="reset" value="{'Reset'|@translate}">
35  </div>
36
37</form>
38</div>
Note: See TracBrowser for help on using the repository browser.