source: extensions/Slim/template/register.tpl @ 25997

Last change on this file since 25997 was 25997, checked in by Miklfe, 10 years ago
File size: 2.4 KB
Line 
1{if ($Slim.style_slim)==1}
2{php}
3header("Refresh: 2; index.php" );
4{/php}
5
6<div>
7<h3>{'You are not authorized to access the requested page'|@translate}</h3>
8</div>
9{else}
10<div id="registerPage">
11
12{$MENUBAR}
13<div id="content" class="content{if isset($MENUBAR)} contentWithMenu{/if}">
14<div id="infoBlock">
15<div class="titrePage">
16        <ul class="categoryActions">
17        </ul>
18        <h2><a href="{$U_HOME}">{'Home'|@translate}</a>{$LEVEL_SEPARATOR}{'Registration'|@translate}</h2>
19</div>
20</div>
21
22{include file='infos_errors.tpl'}
23
24<form method="post" action="{$F_ACTION}" class="properties" name="register_form">
25  <fieldset>
26    <div class="fielTit"><h2>{'Enter your personnal informations'|@translate}</div></h2>
27
28    <ul>
29      <li>
30        <span class="property">
31          <label for="login">* {'Username'|@translate}</label>
32        </span>
33        <input type="text" name="login" id="login" value="{$F_LOGIN}" >
34      </li>
35      <li>
36        <span class="property">
37          <label for="password">* {'Password'|@translate}</label>
38        </span>
39        <input type="password" name="password" id="password" >
40      </li>
41      <li>
42        <span class="property">
43          <label for="password_conf">* {'Confirm Password'|@translate}</label>
44        </span>
45        <input type="password" name="password_conf" id="password_conf" >
46      </li>
47      <li>
48        <span class="property">
49          <label for="mail_address">{if $obligatory_user_mail_address}* {/if}{'Email address'|@translate}</label>
50        </span>
51        <input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" >
52      {if not $obligatory_user_mail_address}
53        ({'useful when password forgotten'|@translate})
54      {/if}
55      </li>
56      <li>
57        <span class="property">
58          <label for="send_password_by_mail">{'Send my connection settings by email'|@translate}</label>
59        </span>
60        <input type="checkbox" name="send_password_by_mail" id="send_password_by_mail" value="1" checked="checked">
61      </li>
62    </ul>
63
64  </fieldset>
65
66  <p class="bottomButtons">
67                <input type="hidden" name="key" value="{$F_KEY}" >
68    <input class="submit" type="submit" name="submit" value="{'Register'|@translate}">
69    <input class="submit" type="reset" value="{'Reset'|@translate}">
70  </p>
71
72</form>
73
74<script type="text/javascript"><!--
75document.register_form.login.focus();
76//--></script>
77
78</div> <!-- content -->
79</div> <!-- registerPage -->
80{/if}
Note: See TracBrowser for help on using the repository browser.