1 | <!-- INCLUDE overall_header.html -->
|
---|
2 |
|
---|
3 | <!-- IF S_SHOW_COPPA or S_REGISTRATION -->
|
---|
4 |
|
---|
5 | <!-- IF S_LANG_OPTIONS -->
|
---|
6 | <script type="text/javascript">
|
---|
7 | // <![CDATA[
|
---|
8 | /**
|
---|
9 | * Change language
|
---|
10 | */
|
---|
11 | function change_language(lang_iso)
|
---|
12 | {
|
---|
13 | document.forms['register'].change_lang.value = lang_iso;
|
---|
14 | document.forms['register'].submit();
|
---|
15 | }
|
---|
16 |
|
---|
17 | // ]]>
|
---|
18 | </script>
|
---|
19 |
|
---|
20 | <form method="post" action="{S_UCP_ACTION}" id="register">
|
---|
21 | <table width="100%" cellspacing="0">
|
---|
22 | <tr>
|
---|
23 | <td class="gensmall" align="{S_CONTENT_FLOW_END}">{L_LANGUAGE}: <select name="lang" id="lang" onchange="change_language(this.value); return false;" title="{L_LANGUAGE}">{S_LANG_OPTIONS}</select></td>
|
---|
24 | </tr>
|
---|
25 | </table>
|
---|
26 | {S_HIDDEN_FIELDS}
|
---|
27 | </form>
|
---|
28 | <!-- ENDIF -->
|
---|
29 |
|
---|
30 | <form method="post" action="{S_UCP_ACTION}">
|
---|
31 |
|
---|
32 | <table class="tablebg" width="100%" cellspacing="1">
|
---|
33 | <tr>
|
---|
34 | <th height="25">{SITENAME} - {L_REGISTRATION}</th>
|
---|
35 | </tr>
|
---|
36 | <tr>
|
---|
37 | <td class="row1" align="center">
|
---|
38 | <table width="90%" cellspacing="2" cellpadding="2" border="0" align="center">
|
---|
39 | <tr>
|
---|
40 | <!-- IF S_SHOW_COPPA -->
|
---|
41 | <td class="gen" align="center"><br />{L_COPPA_BIRTHDAY}<br /><br /><a href="{U_COPPA_NO}">{L_COPPA_NO}</a> :: <a href="{U_COPPA_YES}">{L_COPPA_YES}</a><br /><br /></td>
|
---|
42 | <!-- ELSE -->
|
---|
43 | <td>
|
---|
44 | <span class="genmed"><br />{L_TERMS_OF_USE}<br /><br /></span>
|
---|
45 | <div align="center">
|
---|
46 | <input class="btnlite" type="submit" id="agreed" name="agreed" value="{L_AGREE}" /><br /><br />
|
---|
47 | <input class="btnlite" type="submit" name="not_agreed" value="{L_NOT_AGREE}" />
|
---|
48 | </div>
|
---|
49 | </td>
|
---|
50 | <!-- ENDIF -->
|
---|
51 | </tr>
|
---|
52 | </table>
|
---|
53 | </td>
|
---|
54 | </tr>
|
---|
55 | </table>
|
---|
56 | {S_HIDDEN_FIELDS}
|
---|
57 | {S_FORM_TOKEN}
|
---|
58 | </form>
|
---|
59 |
|
---|
60 | <!-- ELSEIF S_AGREEMENT -->
|
---|
61 |
|
---|
62 | <table class="tablebg" width="100%" cellspacing="1">
|
---|
63 | <tr>
|
---|
64 | <th height="25">{SITENAME} - {AGREEMENT_TITLE}</th>
|
---|
65 | </tr>
|
---|
66 | <tr>
|
---|
67 | <td class="row1" align="center">
|
---|
68 | <table width="90%" cellspacing="2" cellpadding="2" border="0" align="center">
|
---|
69 | <tr>
|
---|
70 | <td>
|
---|
71 | <span class="genmed"><br />{AGREEMENT_TEXT}<br /><br /></span>
|
---|
72 | <div align="center">
|
---|
73 | <a href="{U_BACK}">{L_BACK}</a>
|
---|
74 | </div>
|
---|
75 | </td>
|
---|
76 | </tr>
|
---|
77 | </table>
|
---|
78 | </td>
|
---|
79 | </tr>
|
---|
80 | </table>
|
---|
81 |
|
---|
82 | <!-- ENDIF -->
|
---|
83 |
|
---|
84 | <!-- INCLUDE overall_footer.html -->
|
---|