source: extensions/floOS/register.tpl @ 4944

Last change on this file since 4944 was 3334, checked in by flop25, 15 years ago

first commit

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