source: extensions/gally/gally-default/template/register.tpl

Last change on this file was 16016, checked in by grum, 12 years ago

feature:2664- compatibility with Piwigo 2.4

  • Property svn:executable set to *
File size: 2.9 KB
Line 
1<!-- **GBL** >REGISTER> -->
2
3
4<div id="registerPage">
5
6<div id="content" class="content">
7
8  <div class="titrePage" id='titrePageID'>
9
10    {if isset($MENUBAR)}
11      {if #menuAnimated# == "noswitch"}
12        {$MENUBAR}
13      {else}
14      <div id="menuswitcher">
15        <a id="icon_menu" class="button" onclick="gallyCP.switchmenu('', '{$ROOT_URL}{$themeconf.icon_dir}/');">&nbsp;
16        </a>
17      </div>
18      {/if}
19    {/if}
20
21    <ul class="categoryActions">
22      <li><a id="icon_home" class="button" href="{$U_HOME}" title="{'Home'|@translate}"></a></li>
23    </ul>
24    <h2>{'Registration'|@translate}</h2>
25  </div>
26
27  {if #menuAnimated# != "noswitch" and isset($MENUBAR)}
28    {$MENUBAR}
29  {/if}
30
31{include file='infos_errors.tpl'}
32
33<form method="post" action="{$F_ACTION}" class="properties" name="register_form" id="register">
34  <fieldset>
35    <legend>{'Enter your personnal informations'|@translate}</legend>
36
37    <ul>
38      <li>
39        <div class="property">
40          <label for="login">{'Username'|@translate}</label>
41        </div>
42        <input type="text" name="login" id="login" value="{$F_LOGIN}" >&nbsp;<span class="mandatorystar">*</span>
43      </li>
44      <li>
45        <div class="property">
46          <label for="password">{'Password'|@translate}</label>
47        </div>
48        <input type="password" name="password" id="password" >&nbsp;<span class="mandatorystar">*</span>
49      </li>
50      <li>
51        <div class="property">
52          <label for="password_conf">{'Confirm Password'|@translate}</label>
53        </div>
54        <input type="password" name="password_conf" id="password_conf" >&nbsp;<span class="mandatorystar">*</span>
55      </li>
56      <li>
57        <div class="property">
58          <label for="mail_address">{'Email address'|@translate}</label>
59        </div>
60        <input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" size=35>
61         {if $obligatory_user_mail_address}<span class="mandatorystar">*</span>
62         {else}
63         ({'useful when password forgotten'|@translate})
64         {/if}
65      </li>
66      <li>
67        <div class="property">
68          <label for="send_password_by_mail">{'Send my connection settings by email'|@translate}</label>
69        </div>
70        <input type="checkbox" name="send_password_by_mail" id="send_password_by_mail" value="1" checked="checked">
71      </li>
72    </ul>
73
74  </fieldset>
75
76  <p class="bottomButtons">
77    <input type="hidden" name="key" value="{$F_KEY}" >
78    <input class="submit" type="submit" name="submit" value="{'Register'|@translate}">
79    <input class="submit" type="reset" value="{'Reset'|@translate}">
80  </p>
81
82  <p class="mandatorynfo">
83    <span class="mandatorystar">*</span> : {'obligatory'|@translate}
84  </p>
85
86</form>
87
88<script type="text/javascript"><!--
89document.register_form.login.focus();
90//--></script>
91
92</div> <!-- content -->
93</div> <!-- registerPage -->
94<!-- **GBL** <REGISTER< -->
Note: See TracBrowser for help on using the repository browser.