source: trunk/template/cclear/register.tpl @ 852

Last change on this file since 852 was 850, checked in by plg, 19 years ago
  • new : HTML BODY identifier to let CSS stylesheets manage specific behaviour.
  • deletion : admin/search useless
  • improvement : in admin/user_list, special behaviour for true/false fields (expand, show_comments)
  • new : gallery_title and gallery_description are displayed at the top of each page.
  • improvement : simplification in HTML for categories menu.
  • improvement : standardization of presentation in all public pages (identification, registration, search, profile, notification, comments, etc.)

(not in ChangeLog, below this line)

  • add forgotten notification.php (should have been added in a previous commit)
  • [template cclear] deletion of useless class .bouton
  • [template cclear] for test purpose, new presentation of register page (using FORM.filter)
  • [template cclear] adaptation of admin/group_list from template default
  • [template cclear] deletion of obsolete admin/infos_images
  • [template cclear] deletion of obsolete admin/search_username
  • [template cclear] new icon register.png
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.2 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/cclear/theme/home.png" alt="{lang:home}"/></a></li>
8    </ul>
9    <h2>{lang:Registration}</h2>
10  </div>
11
12<!-- TO DO -->
13<!-- It's easy, just lok at identification.tpl ;-) -->
14
15  <!-- BEGIN errors -->
16  <div class="errors">
17    <ul>
18      <!-- BEGIN error -->
19      <li>{errors.error.ERROR}</li>
20      <!-- END error -->
21    </ul>
22  </div>
23  <!-- END errors -->
24
25<form method="post" action="{F_ACTION}" class="filter">
26  <fieldset>
27    <legend>{lang:Enter your personnal informations}</legend>
28
29    <label>* {lang:Username}<input type="text" name="login" value="{F_LOGIN}"></label>
30    <label>* {lang:Password}<input type="password" name="password"></label>
31    <label>* {lang:Confirm Password}<input type="password" name="password_conf"></label>
32    <label>{lang:Mail address}<input type="text" name="mail_address" value="{F_EMAIL}"></label>
33  </fieldset>
34
35  <p class="bottomButtons">
36    <input type="submit" name="submit" value="{lang:Register}">
37  </p>
38
39</form>
40
41</div> <!-- content -->
42</div> <!-- registerPage -->
Note: See TracBrowser for help on using the repository browser.