source: branches/branch-1_6/template/yoga/register.tpl @ 1142

Last change on this file since 1142 was 1142, checked in by nikrou, 18 years ago

bug fixed: script type missing (text/javascript)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 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="{themeconf:icon_dir}/home.png" class="button" 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" name="register_form">
23  <fieldset>
24    <legend>{lang:Enter your personnal informations}</legend>
25
26    <ul>
27      <li>
28        <span class="property">
29          <label for="login">* {lang:Username}</label>
30        </span>
31        <input type="text" name="login" id="login" value="{F_LOGIN}" onfocus="this.className='focus';" onblur="this.className='nofocus';">
32      </li>
33
34      <li>
35        <span class="property">
36          <label for="password">* {lang:Password}</label>
37        </span>
38        <input type="password" name="password" id="password" onfocus="this.className='focus';" onblur="this.className='nofocus';">
39      </li>
40
41      <li>
42        <span class="property">
43          <label for="password_conf">* {lang:Confirm Password}</label>
44        </span>
45        <input type="password" name="password_conf" id="password_conf" onfocus="this.className='focus';" onblur="this.className='nofocus';">
46      </li>
47
48      <li>
49        <span class="property">
50          <label for="mail_address">{lang:Mail address}</label>
51        </span>
52        <input type="text" name="mail_address" id="mail_address" value="{F_EMAIL}" onfocus="this.className='focus';" onblur="this.className='nofocus';">
53        ({lang:useful when password forgotten})
54      </li>
55    </ul>
56
57  </fieldset>
58
59  <p class="bottomButtons">
60    <input type="submit" name="submit" value="{lang:Register}">
61    <input type="reset" value="{lang:Reset}">
62  </p>
63
64</form>
65
66<script type="text/javascript"><!--
67document.register_form.login.focus();
68//--></script>
69
70</div> <!-- content -->
71</div> <!-- registerPage -->
Note: See TracBrowser for help on using the repository browser.