source: extensions/simple_themes/simple/template/register.tpl @ 13556

Last change on this file since 13556 was 13556, checked in by plg, 12 years ago

import theme Simple version 2.5.1

  • refactor code for #titrePage and add the link to switch the menu
  • fixes for comments page
  • fixes for pages where the $MENUBAR is present
File size: 2.1 KB
Line 
1{assign var='pagetitle' value='Registration'}
2{include file='pagetitle.tpl'}
3
4<div id="content">
5  {if isset($MENUBAR)}{$MENUBAR}{/if}
6  {if isset($errors)}
7  <div class="errors">
8    <ul>
9      {foreach from=$errors item=error}
10      <li>{$error}</li>
11      {/foreach}
12    </ul>
13  </div>
14  {/if}
15  <form method="post" action="{$F_ACTION}" class="properties" name="register_form">
16    <fieldset>
17      <legend>{'Enter your personnal informations'|@translate}</legend>
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}" >&nbsp;<span class="mandatorystar">*</span>
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" >&nbsp;<span class="mandatorystar">*</span>
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" >&nbsp;<span class="mandatorystar">*</span>
36        </li>
37        <li>
38        <span class="property">
39            <label for="mail_address">{'Email address'|@translate}</label>
40        </span>
41          <input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" >
42          ({'useful when password forgotten'|@translate})
43        </li>
44      </ul>
45    </fieldset>
46    <p class="bottomButtons">
47      <input type="hidden" name="key" value="{$F_KEY}" >
48      <input class="submit" type="submit" name="submit" value="{'Register'|@translate}">
49      <input class="submit" type="reset" value="{'Reset'|@translate}">
50    </p>
51  </form>
52  <p><span class="mandatorystar">*</span> : {'obligatory'|@translate}</p>
53  <script type="text/javascript">
54    <!--
55       document.register_form.login.focus();
56       //-->
57  </script>
58  <div style="clear: both;"></div>
59</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.