source: trunk/themes/default/template/register.tpl @ 29614

Last change on this file since 29614 was 18750, checked in by rvelices, 12 years ago

rollback remove empty <ul> ( -r18748 )

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