source: extensions/Versa/template/register.tpl @ 31943

Last change on this file since 31943 was 31943, checked in by lexming, 5 years ago

Fix script path conflicts

  • Property svn:executable set to *
File size: 2.4 KB
Line 
1<div id="mainBox">
2
3{if isset($MENUBAR)}{$MENUBAR}{/if}
4{combine_script id='menu.switch' load='footer' require='jquery' path='themes/Versa/js/menuswitch.js'}
5
6<div id="contentBox">
7<div id="registerPage">
8
9<div id="content" class="content">
10
11{if isset($errors) or isset($infos)}
12<div class="content messages">
13{include file='infos_errors.tpl'}
14</div>
15{/if}
16
17<div class="titrePage">
18        <ul class="categoryActions">
19        </ul>
20        <h2><a href="{$U_HOME}">{'Home'|@translate}</a>{$LEVEL_SEPARATOR}{'Registration'|@translate}</h2>
21</div>
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">{if $obligatory_user_mail_address}* {/if}{'Email address'|@translate}</label>
49        </span>
50        <input type="text" name="mail_address" id="mail_address" value="{$F_EMAIL}" >
51      {if not $obligatory_user_mail_address}
52        ({'useful when password forgotten'|@translate})
53      {/if}
54      </li>
55      <li>
56        <span class="property">
57          <label for="send_password_by_mail">{'Send my connection settings by email'|@translate}</label>
58        </span>
59        <input type="checkbox" name="send_password_by_mail" id="send_password_by_mail" value="1" checked="checked">
60      </li>
61    </ul>
62
63  </fieldset>
64
65  <p class="bottomButtons">
66                <input type="hidden" name="key" value="{$F_KEY}" >
67    <input class="submit" type="submit" name="submit" value="{'Register'|@translate}">
68    <input class="submit" type="reset" value="{'Reset'|@translate}">
69  </p>
70
71</form>
72
73<script type="text/javascript"><!--
74document.register_form.login.focus();
75//--></script>
76
77</div> <!-- content -->
78</div> <!-- registerPage -->
79</div> <!-- contentBox -->
80</div> <!-- mainBox -->
Note: See TracBrowser for help on using the repository browser.