source: extensions/stripped/template/register.tpl @ 24444

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

register link added in menubar quickconnect
script js hardly corrected to works with latest version of jQuery

File size: 2.3 KB
Line 
1<div class="titrePage">
2 <div class="browsePath">
3  <h2>
4   {if isset($MENUBAR)}
5    <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
6   {/if}
7   <a href="{$U_HOME}">{'Home'|@translate}</a>
8   {$LEVEL_SEPARATOR}{'Registration'|@translate}
9  </h2>
10 </div>
11</div>
12<div id="content">
13 {if isset($MENUBAR)}{$MENUBAR}{/if}
14 <div id="content_cell">
15  <div class="content_block">
16   {include file='infos_errors.tpl'}
17   <form method="post" action="{$F_ACTION}" class="properties" name="register_form">
18    <fieldset>
19     <legend>{'Enter your personnal informations'|@translate}</legend>
20     <ul>
21      <li>
22       <span class="property">
23        <label for="login">{'Username'|@translate}</label>
24       </span>
25       <input type="text" name="login" id="login" value="{$F_LOGIN}" >&nbsp;<span class="mandatorystar">*</span>
26      </li>
27      <li>
28       <span class="property">
29        <label for="password">{'Password'|@translate}</label>
30       </span>
31       <input type="password" name="password" id="password" >&nbsp;<span class="mandatorystar">*</span>
32      </li>
33      <li>
34       <span class="property">
35        <label for="password_conf">{'Confirm Password'|@translate}</label>
36       </span>
37       <input type="password" name="password_conf" id="password_conf" >&nbsp;<span class="mandatorystar">*</span>
38      </li>
39      <li>
40       <span class="property">
41        <label for="mail_address">{'Email address'|@translate}</label>
42       </span>
43       <input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" >{if $obligatory_user_mail_address}&nbsp;<span class="mandatorystar">*</span>{/if}
44       ({'useful when password forgotten'|@translate})
45      </li>
46     </ul>
47    </fieldset>
48    <p class="bottomButtons">
49     <input type="hidden" name="key" value="{$F_KEY}" >
50     <input class="submit" type="submit" name="submit" value="{'Register'|@translate}">
51     <input class="submit" type="reset" value="{'Reset'|@translate}">
52    </p>
53   </form>
54   <p><span class="mandatorystar">*</span> : {'obligatory'|@translate}</p>
55   <script type="text/javascript">
56    <!--
57    document.register_form.login.focus();
58    //-->
59   </script>
60  </div>
61 </div>
62</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.