source: branches/2.4/themes/default/template/register.tpl @ 16930

Last change on this file since 16930 was 14240, checked in by Zaphod, 12 years ago

feature 2588: template harmonization
All templates (tags, comments etc...) have now a "Home" link at the beginning of the page title (like index.tpl), instead of a home icon.

  • Property svn:eol-style set to LF
File size: 2.2 KB
Line 
1{if isset($MENUBAR)}{$MENUBAR}{/if}
2<div id="registerPage">
3
4<div id="content" class="content{if isset($MENUBAR)} contentWithMenu{/if}">
5
6<div class="titrePage">
7        <ul class="categoryActions">
8        </ul>
9        <h2><a href="{$U_HOME}">{'Home'|@translate}</a>{$LEVEL_SEPARATOR}{'Registration'|@translate}</h2>
10</div>
11
12{include file='infos_errors.tpl'}
13
14<form method="post" action="{$F_ACTION}" class="properties" name="register_form">
15  <fieldset>
16    <legend>{'Enter your personnal informations'|@translate}</legend>
17
18    <ul>
19      <li>
20        <span class="property">
21          <label for="login">* {'Username'|@translate}</label>
22        </span>
23        <input type="text" name="login" id="login" value="{$F_LOGIN}" >
24      </li>
25      <li>
26        <span class="property">
27          <label for="password">* {'Password'|@translate}</label>
28        </span>
29        <input type="password" name="password" id="password" >
30      </li>
31      <li>
32        <span class="property">
33          <label for="password_conf">* {'Confirm Password'|@translate}</label>
34        </span>
35        <input type="password" name="password_conf" id="password_conf" >
36      </li>
37      <li>
38        <span class="property">
39          <label for="mail_address">{if $obligatory_user_mail_address}* {/if}{'Email address'|@translate}</label>
40        </span>
41        <input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" >
42      {if not $obligatory_user_mail_address}
43        ({'useful when password forgotten'|@translate})
44      {/if}
45      </li>
46      <li>
47        <span class="property">
48          <label for="send_password_by_mail">{'Send my connection settings by email'|@translate}</label>
49        </span>
50        <input type="checkbox" name="send_password_by_mail" id="send_password_by_mail" value="1" checked="checked">
51      </li>
52    </ul>
53
54  </fieldset>
55
56  <p class="bottomButtons">
57                <input type="hidden" name="key" value="{$F_KEY}" >
58    <input class="submit" type="submit" name="submit" value="{'Register'|@translate}">
59    <input class="submit" type="reset" value="{'Reset'|@translate}">
60  </p>
61
62</form>
63
64<script type="text/javascript"><!--
65document.register_form.login.focus();
66//--></script>
67
68</div> <!-- content -->
69</div> <!-- registerPage -->
Note: See TracBrowser for help on using the repository browser.