source: branches/gettext/themes/default/template/register.tpl @ 5167

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

Feature 1451 :

  • improve speed to generate pages when locales is not present on system
  • default domain in now piwigo
  • each plugin can have is own domain ({'...'|@translate:my_plugin})
  • Property svn:eol-style set to LF
File size: 1.9 KB
Line 
1<div id="registerPage">
2
3<div id="content" class="content">
4
5  <div class="titrePage">
6    <ul class="categoryActions">
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>
8    </ul>
9    <h2>{'Registration'|@translate}</h2>
10  </div>
11
12{if isset($errors)}
13  <div class="errors">
14    <ul>
15      {foreach from=$errors item=error}
16      <li>{$error}</li>
17      {/foreach}
18    </ul>
19  </div>
20{/if}
21
22<form method="post" action="{$F_ACTION}" class="properties" name="register_form">
23  <fieldset>
24    <legend>{'Enter your personnal informations'|@translate}</legend>
25
26    <ul>
27      <li>
28        <span class="property">
29          <label for="login">* {'Username'|@translate}</label>
30        </span>
31        <input type="text" name="login" id="login" value="{$F_LOGIN}" >
32      </li>
33      <li>
34        <span class="property">
35          <label for="password">* {'Password'|@translate}</label>
36        </span>
37        <input type="password" name="password" id="password" >
38      </li>
39      <li>
40        <span class="property">
41          <label for="password_conf">* {'Confirm Password'|@translate}</label>
42        </span>
43        <input type="password" name="password_conf" id="password_conf" >
44      </li>
45      <li>
46        <span class="property">
47          <label for="mail_address">{'Mail address'|@translate}</label>
48        </span>
49        <input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" >
50        ({'useful when password forgotten'|@translate})
51      </li>
52    </ul>
53
54  </fieldset>
55
56  <p class="bottomButtons">
57    <input class="submit" type="submit" name="submit" value="{'Register'|@translate}">
58    <input class="submit" type="reset" value="{'Reset'|@translate}">
59  </p>
60
61</form>
62
63<script type="text/javascript"><!--
64document.register_form.login.focus();
65//--></script>
66
67</div> <!-- content -->
68</div> <!-- registerPage -->
Note: See TracBrowser for help on using the repository browser.