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

Last change on this file since 5164 was 5164, checked in by nikrou, 14 years ago

Fix mistypping for home page icon (Home.png instead of home.png)

  • Property svn:eol-style set to LF
File size: 1.9 KB
RevLine 
[859]1<div id="registerPage">
2
[2352]3<div id="content" class="content">
[859]4
5  <div class="titrePage">
6    <ul class="categoryActions">
[5164]7      <li><a href="{$U_HOME}" title="{'Home'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/home.png" class="button" alt="{'Home'|@translate}"></a></li>
[859]8    </ul>
[2247]9    <h2>{'Registration'|@translate}</h2>
[859]10  </div>
11
[2247]12{if isset($errors)}
[859]13  <div class="errors">
14    <ul>
[2247]15      {foreach from=$errors item=error}
16      <li>{$error}</li>
17      {/foreach}
[859]18    </ul>
19  </div>
[2247]20{/if}
[859]21
[2247]22<form method="post" action="{$F_ACTION}" class="properties" name="register_form">
[859]23  <fieldset>
[2247]24    <legend>{'Enter your personnal informations'|@translate}</legend>
[859]25
26    <ul>
27      <li>
[1129]28        <span class="property">
[2247]29          <label for="login">* {'Username'|@translate}</label>
[1129]30        </span>
[2247]31        <input type="text" name="login" id="login" value="{$F_LOGIN}" >
[859]32      </li>
33      <li>
[1129]34        <span class="property">
[2247]35          <label for="password">* {'Password'|@translate}</label>
[1129]36        </span>
[1491]37        <input type="password" name="password" id="password" >
[859]38      </li>
39      <li>
[1129]40        <span class="property">
[2247]41          <label for="password_conf">* {'Confirm Password'|@translate}</label>
[1129]42        </span>
[1491]43        <input type="password" name="password_conf" id="password_conf" >
[859]44      </li>
45      <li>
[1129]46        <span class="property">
[2247]47          <label for="mail_address">{'Mail address'|@translate}</label>
[1129]48        </span>
[2247]49        <input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" >
50        ({'useful when password forgotten'|@translate})
[859]51      </li>
52    </ul>
53
54  </fieldset>
55
56  <p class="bottomButtons">
[2247]57    <input class="submit" type="submit" name="submit" value="{'Register'|@translate}">
58    <input class="submit" type="reset" value="{'Reset'|@translate}">
[859]59  </p>
60
61</form>
62
[1143]63<script type="text/javascript"><!--
[1131]64document.register_form.login.focus();
65//--></script>
66
[859]67</div> <!-- content -->
68</div> <!-- registerPage -->
Note: See TracBrowser for help on using the repository browser.