| 1 | <!-- INCLUDE overall_header.html -->
|
|---|
| 2 |
|
|---|
| 3 | <script type="text/javascript">
|
|---|
| 4 | // <![CDATA[
|
|---|
| 5 | /**
|
|---|
| 6 | * Change language
|
|---|
| 7 | */
|
|---|
| 8 | function change_language(lang_iso)
|
|---|
| 9 | {
|
|---|
| 10 | document.forms['register'].change_lang.value = lang_iso;
|
|---|
| 11 | document.forms['register'].submit.click();
|
|---|
| 12 | }
|
|---|
| 13 |
|
|---|
| 14 | var old_func = window.onload;
|
|---|
| 15 |
|
|---|
| 16 | function disable(disabl)
|
|---|
| 17 | {
|
|---|
| 18 | document.getElementById("submit").disabled = disabl;
|
|---|
| 19 | }
|
|---|
| 20 |
|
|---|
| 21 | function disable_and_handle()
|
|---|
| 22 | {
|
|---|
| 23 | if (old_func)
|
|---|
| 24 | {
|
|---|
| 25 | old_func();
|
|---|
| 26 | }
|
|---|
| 27 | disable(true);
|
|---|
| 28 | }
|
|---|
| 29 |
|
|---|
| 30 | <!-- IF S_TIME -->
|
|---|
| 31 | window.onload = disable_and_handle;
|
|---|
| 32 | setInterval("disable(false)", {S_TIME});
|
|---|
| 33 | <!-- ENDIF -->
|
|---|
| 34 | // ]]>
|
|---|
| 35 | </script>
|
|---|
| 36 |
|
|---|
| 37 | <form name="register" method="post" action="{S_UCP_ACTION}">
|
|---|
| 38 |
|
|---|
| 39 | <table class="tablebg" width="100%" cellspacing="1">
|
|---|
| 40 | <tr>
|
|---|
| 41 | <th colspan="2" valign="middle">{L_REGISTRATION}</th>
|
|---|
| 42 | </tr>
|
|---|
| 43 |
|
|---|
| 44 | <!-- IF ERROR -->
|
|---|
| 45 | <tr>
|
|---|
| 46 | <td class="row3" colspan="2" align="center"><span class="gensmall error">{ERROR}</span></td>
|
|---|
| 47 | </tr>
|
|---|
| 48 | <!-- ENDIF -->
|
|---|
| 49 |
|
|---|
| 50 | <!-- IF L_REG_COND -->
|
|---|
| 51 | <tr>
|
|---|
| 52 | <td class="row2" colspan="2"><span class="gensmall">{L_REG_COND}</span></td>
|
|---|
| 53 | </tr>
|
|---|
| 54 | <!-- ENDIF -->
|
|---|
| 55 | <!-- IF .profile_fields -->
|
|---|
| 56 | <tr>
|
|---|
| 57 | <td class="row2" colspan="2"><span class="gensmall">{L_ITEMS_REQUIRED}</span></td>
|
|---|
| 58 | </tr>
|
|---|
| 59 | <!-- ENDIF -->
|
|---|
| 60 |
|
|---|
| 61 | <tr>
|
|---|
| 62 | <td class="row1" width="38%"><b class="genmed">{L_USERNAME}: </b><br /><span class="gensmall">{L_USERNAME_EXPLAIN}</span></td>
|
|---|
| 63 | <td class="row2"><input class="post" type="text" name="username" size="25" value="{USERNAME}" /></td>
|
|---|
| 64 | </tr>
|
|---|
| 65 | <tr>
|
|---|
| 66 | <td class="row1"><b class="genmed">{L_EMAIL_ADDRESS}: </b></td>
|
|---|
| 67 | <td class="row2"><input class="post" type="text" name="email" size="25" maxlength="100" value="{EMAIL}" /></td>
|
|---|
| 68 | </tr>
|
|---|
| 69 | <tr>
|
|---|
| 70 | <td class="row1"><b class="genmed">{L_CONFIRM_EMAIL}: </b></td>
|
|---|
| 71 | <td class="row2"><input class="post" type="text" name="email_confirm" size="25" maxlength="100" value="{EMAIL_CONFIRM}" /></td>
|
|---|
| 72 | </tr>
|
|---|
| 73 | <tr>
|
|---|
| 74 | <td class="row1"><b class="genmed">{L_PASSWORD}: </b><br /><span class="gensmall">{L_PASSWORD_EXPLAIN}</span></td>
|
|---|
| 75 | <td class="row2"><input class="post" type="password" name="new_password" size="25" value="{PASSWORD}" /></td>
|
|---|
| 76 | </tr>
|
|---|
| 77 | <tr>
|
|---|
| 78 | <td class="row1"><b class="genmed">{L_CONFIRM_PASSWORD}: </b></td>
|
|---|
| 79 | <td class="row2"><input class="post" type="password" name="password_confirm" size="25" value="{PASSWORD_CONFIRM}" /></td>
|
|---|
| 80 | </tr>
|
|---|
| 81 | <tr>
|
|---|
| 82 | <td class="row1"><b class="genmed">{L_LANGUAGE}: </b></td>
|
|---|
| 83 | <td class="row2"><select name="lang" onchange="change_language(this.value); return false;">{S_LANG_OPTIONS}</select></td>
|
|---|
| 84 | </tr>
|
|---|
| 85 | <tr>
|
|---|
| 86 | <td class="row1"><b class="genmed">{L_TIMEZONE}: </b></td>
|
|---|
| 87 | <td class="row2"><select name="tz">{S_TZ_OPTIONS}</select></td>
|
|---|
| 88 | </tr>
|
|---|
| 89 | <!-- BEGIN profile_fields -->
|
|---|
| 90 | <tr>
|
|---|
| 91 | <td class="row1" width="35%">
|
|---|
| 92 | <b class="genmed">{profile_fields.LANG_NAME}: </b>
|
|---|
| 93 | <!-- IF profile_fields.S_REQUIRED --><b>*</b><!-- ENDIF -->
|
|---|
| 94 | <!-- IF profile_fields.LANG_EXPLAIN --><br /><span class="gensmall">{profile_fields.LANG_EXPLAIN}</span><!-- ENDIF -->
|
|---|
| 95 | </td>
|
|---|
| 96 | <td class="row2">{profile_fields.FIELD}<!-- IF profile_fields.ERROR --><br /><span class="gensmall error">{profile_fields.ERROR}</span><!-- ENDIF --></td>
|
|---|
| 97 | </tr>
|
|---|
| 98 | <!-- END profile_fields -->
|
|---|
| 99 |
|
|---|
| 100 | <!-- IF S_CONFIRM_CODE -->
|
|---|
| 101 | <tr>
|
|---|
| 102 | <th colspan="2" valign="middle">{L_CONFIRMATION}</th>
|
|---|
| 103 | </tr>
|
|---|
| 104 | <tr>
|
|---|
| 105 | <td class="row3" colspan="2"><span class="gensmall">{L_CONFIRM_EXPLAIN}</span></td>
|
|---|
| 106 | </tr>
|
|---|
| 107 | <tr>
|
|---|
| 108 | <td class="row1" colspan="2" align="center">{CONFIRM_IMG}</td>
|
|---|
| 109 | </tr>
|
|---|
| 110 | <tr>
|
|---|
| 111 | <td class="row1"><b class="genmed">{L_CONFIRM_CODE}: </b><br /><span class="gensmall">{L_CONFIRM_CODE_EXPLAIN}</span></td>
|
|---|
| 112 | <td class="row2"><input class="post" type="text" name="confirm_code" size="8" maxlength="8" /></td>
|
|---|
| 113 | </tr>
|
|---|
| 114 | <!-- ENDIF -->
|
|---|
| 115 |
|
|---|
| 116 | <!-- IF S_COPPA -->
|
|---|
| 117 | <tr>
|
|---|
| 118 | <th colspan="2" valign="middle">{L_COPPA_COMPLIANCE}</th>
|
|---|
| 119 | </tr>
|
|---|
| 120 | <tr>
|
|---|
| 121 | <td class="row3" colspan="2"><span class="gensmall">{L_COPPA_EXPLAIN}</span></td>
|
|---|
| 122 | </tr>
|
|---|
| 123 | <!-- ENDIF -->
|
|---|
| 124 |
|
|---|
| 125 | <tr>
|
|---|
| 126 | <td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input class="btnmain" type="submit" name="submit" id="submit" value="{L_SUBMIT}" /> <input class="btnlite" type="reset" value="{L_RESET}" name="reset" /></td>
|
|---|
| 127 | </tr>
|
|---|
| 128 | </table>
|
|---|
| 129 | {S_FORM_TOKEN}
|
|---|
| 130 | </form>
|
|---|
| 131 |
|
|---|
| 132 | <!-- INCLUDE overall_footer.html -->
|
|---|