source: trunk/themes/default/template/register.tpl @ 12886

Last change on this file since 12886 was 12886, checked in by mistic100, 12 years ago

feature:2021 change contents of the mail + add option on admin/user_list

  • Property svn:eol-style set to LF
File size: 2.3 KB
Line 
1{if isset($MENUBAR)}{$MENUBAR}{/if}
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="{'Home'|@translate}" class="pwg-state-default pwg-button">
9                        <span class="pwg-icon pwg-icon-home">&nbsp;</span><span class="pwg-button-text">{'Home'|@translate}</span>
10                </a></li>
11  </ul>
12        <h2>{'Registration'|@translate}</h2>
13</div>
14
15{include file='infos_errors.tpl'}
16
17<form method="post" action="{$F_ACTION}" class="properties" name="register_form">
18  <fieldset>
19    <legend>{'Enter your personnal informations'|@translate}</legend>
20
21    <ul>
22      <li>
23        <span class="property">
24          <label for="login">* {'Username'|@translate}</label>
25        </span>
26        <input type="text" name="login" id="login" value="{$F_LOGIN}" >
27      </li>
28      <li>
29        <span class="property">
30          <label for="password">* {'Password'|@translate}</label>
31        </span>
32        <input type="password" name="password" id="password" >
33      </li>
34      <li>
35        <span class="property">
36          <label for="password_conf">* {'Confirm Password'|@translate}</label>
37        </span>
38        <input type="password" name="password_conf" id="password_conf" >
39      </li>
40      <li>
41        <span class="property">
42          <label for="mail_address">{if $obligatory_user_mail_address}* {/if}{'Email address'|@translate}</label>
43        </span>
44        <input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" >
45      {if not $obligatory_user_mail_address}
46        ({'useful when password forgotten'|@translate})
47      {/if}
48      </li>
49      <li>
50        <span class="property">
51          <label for="send_password_by_mail">{'Send my connection settings by email'|@translate}</label>
52        </span>
53        <input type="checkbox" name="send_password_by_mail" id="send_password_by_mail" value="1" checked="checked">
54      </li>
55    </ul>
56
57  </fieldset>
58
59  <p class="bottomButtons">
60                <input type="hidden" name="key" value="{$F_KEY}" >
61    <input class="submit" type="submit" name="submit" value="{'Register'|@translate}">
62    <input class="submit" type="reset" value="{'Reset'|@translate}">
63  </p>
64
65</form>
66
67<script type="text/javascript"><!--
68document.register_form.login.focus();
69//--></script>
70
71</div> <!-- content -->
72</div> <!-- registerPage -->
Note: See TracBrowser for help on using the repository browser.