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

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

import theme Simple version 2.5

  • use media queries to adapt layout for small screens
  • remove arbitrary limit on width: the picture will simply be partially hidden if too wide
  • update password.tpl
  • add MENUBAR on all pages
  • Spelling correction in README
  • update url
  • bugfix for the feature 'open external links in new window' for menubar links
File size: 2.1 KB
Line 
1<div class="titrePage">
2  <ul class="categoryActions">
3    <li><a href="{$U_HOME}" title="{'Home'|@translate}">{'Home'|@translate}</a></li>
4  </ul>
5  <h2>{'Registration'|@translate}</h2>
6</div>
7<div id="content">
8{if isset($MENUBAR)}{$MENUBAR}{/if}
9  {if isset($errors)}
10  <div class="errors">
11    <ul>
12      {foreach from=$errors item=error}
13      <li>{$error}</li>
14      {/foreach}
15    </ul>
16  </div>
17  {/if}
18  <form method="post" action="{$F_ACTION}" class="properties" name="register_form">
19    <fieldset>
20      <legend>{'Enter your personnal informations'|@translate}</legend>
21      <ul>
22        <li>
23          <span class="property">
24            <label for="login">{'Username'|@translate}</label>
25          </span>
26          <input type="text" name="login" id="login" value="{$F_LOGIN}" >&nbsp;<span class="mandatorystar">*</span>
27        </li>
28        <li>
29          <span class="property">
30            <label for="password">{'Password'|@translate}</label>
31          </span>
32          <input type="password" name="password" id="password" >&nbsp;<span class="mandatorystar">*</span>
33        </li>
34        <li>
35          <span class="property">
36            <label for="password_conf">{'Confirm Password'|@translate}</label>
37          </span>
38          <input type="password" name="password_conf" id="password_conf" >&nbsp;<span class="mandatorystar">*</span>
39        </li>
40        <li>
41        <span class="property">
42            <label for="mail_address">{'Email address'|@translate}</label>
43        </span>
44          <input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" >
45          ({'useful when password forgotten'|@translate})
46        </li>
47      </ul>
48    </fieldset>
49    <p class="bottomButtons">
50      <input type="hidden" name="key" value="{$F_KEY}" >
51      <input class="submit" type="submit" name="submit" value="{'Register'|@translate}">
52      <input class="submit" type="reset" value="{'Reset'|@translate}">
53    </p>
54  </form>
55  <p><span class="mandatorystar">*</span> : {'obligatory'|@translate}</p>
56  <script type="text/javascript">
57    <!--
58       document.register_form.login.focus();
59       //-->
60  </script>
61</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.