source: trunk/template/yoga/register.tpl @ 866

Last change on this file since 866 was 866, checked in by plg, 19 years ago
  • new: automatic new password sent by mail when requested by user
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1<div id="registerPage">
2
3<div id="content">
4
5  <div class="titrePage">
6    <ul class="categoryActions">
7      <li><a href="{U_HOME}" title="{lang:return to homepage}"><img src="./template/yoga/theme/home.png" alt="{lang:home}"/></a></li>
8    </ul>
9    <h2>{lang:Registration}</h2>
10  </div>
11
12  <!-- BEGIN errors -->
13  <div class="errors">
14    <ul>
15      <!-- BEGIN error -->
16      <li>{errors.error.ERROR}</li>
17      <!-- END error -->
18    </ul>
19  </div>
20  <!-- END errors -->
21
22<form method="post" action="{F_ACTION}" class="properties">
23  <fieldset>
24    <legend>{lang:Enter your personnal informations}</legend>
25
26    <ul>
27      <li>
28        <label for="login" class="mandatory">* {lang:Username}</label>
29        <input type="text" name="login" id="login" value="{F_LOGIN}" onfocus="this.className='focus';" onblur="this.className='nofocus';">
30      </li>
31
32      <li>
33        <label for="password" class="mandatory">* {lang:Password}</label>
34        <input type="password" name="password" id="password" onfocus="this.className='focus';" onblur="this.className='nofocus';">
35      </li>
36
37      <li>
38        <label for="password_conf" class="mandatory">* {lang:Confirm Password}</label>
39        <input type="password" name="password_conf" id="password_conf" onfocus="this.className='focus';" onblur="this.className='nofocus';">
40      </li>
41
42      <li>
43        <label for="mail_address">{lang:Mail address}</label>
44        <input type="text" name="mail_address" id="mail_address" value="{F_EMAIL}" onfocus="this.className='focus';" onblur="this.className='nofocus';">
45        ({lang:useful when password forgotten})
46      </li>
47    </ul>
48
49  </fieldset>
50
51  <p class="bottomButtons">
52    <input type="submit" name="submit" value="{lang:Register}">
53    <input type="reset" value="{lang:Reset}">
54  </p>
55
56</form>
57
58</div> <!-- content -->
59</div> <!-- registerPage -->
Note: See TracBrowser for help on using the repository browser.