1 | <!-- INCLUDE overall_header.html -->
|
---|
2 |
|
---|
3 | <script type="text/javascript" defer="defer" >
|
---|
4 | // <![CDATA[
|
---|
5 |
|
---|
6 | var old_func = window.onload;
|
---|
7 |
|
---|
8 | function disable(disabl)
|
---|
9 | {
|
---|
10 | document.getElementById("agreed").disabled = disabl;
|
---|
11 | }
|
---|
12 |
|
---|
13 | function disable_and_handle()
|
---|
14 | {
|
---|
15 | if (old_func)
|
---|
16 | {
|
---|
17 | old_func();
|
---|
18 | }
|
---|
19 | disable(true);
|
---|
20 | }
|
---|
21 |
|
---|
22 | <!-- IF S_TIME -->
|
---|
23 | window.onload = disable_and_handle;
|
---|
24 | setInterval("disable(false)", {S_TIME});
|
---|
25 | <!-- ENDIF -->
|
---|
26 | // ]]>
|
---|
27 | </script>
|
---|
28 |
|
---|
29 | <!-- IF S_SHOW_COPPA or S_REGISTRATION -->
|
---|
30 |
|
---|
31 | <form method="post" action="{S_UCP_ACTION}">
|
---|
32 |
|
---|
33 | <table class="tablebg" width="100%" cellspacing="1">
|
---|
34 | <tr>
|
---|
35 | <th height="25">{SITENAME} - {L_REGISTRATION}</th>
|
---|
36 | </tr>
|
---|
37 | <tr>
|
---|
38 | <td class="row1" align="center">
|
---|
39 | <table width="90%" cellspacing="2" cellpadding="2" border="0" align="center">
|
---|
40 | <tr>
|
---|
41 | <!-- IF S_SHOW_COPPA -->
|
---|
42 | <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>
|
---|
43 | <!-- ELSE -->
|
---|
44 | <td>
|
---|
45 | <span class="genmed"><br />{L_TERMS_OF_USE}<br /><br /></span>
|
---|
46 | <div align="center">
|
---|
47 | <input class="btnlite" type="submit" id="agreed" name="agreed" value="{L_AGREE}" /><br /><br />
|
---|
48 | <input class="btnlite" type="submit" name="not_agreed" value="{L_NOT_AGREE}" />
|
---|
49 | </div>
|
---|
50 | </td>
|
---|
51 | <!-- ENDIF -->
|
---|
52 | </tr>
|
---|
53 | </table>
|
---|
54 | </td>
|
---|
55 | </tr>
|
---|
56 | </table>
|
---|
57 | {S_HIDDEN_FIELDS}
|
---|
58 | {S_FORM_TOKEN}
|
---|
59 | </form>
|
---|
60 |
|
---|
61 | <!-- ELSEIF S_AGREEMENT -->
|
---|
62 |
|
---|
63 | <table class="tablebg" width="100%" cellspacing="1">
|
---|
64 | <tr>
|
---|
65 | <th height="25">{SITENAME} - {AGREEMENT_TITLE}</th>
|
---|
66 | </tr>
|
---|
67 | <tr>
|
---|
68 | <td class="row1" align="center">
|
---|
69 | <table width="90%" cellspacing="2" cellpadding="2" border="0" align="center">
|
---|
70 | <tr>
|
---|
71 | <td>
|
---|
72 | <span class="genmed"><br />{AGREEMENT_TEXT}<br /><br /></span>
|
---|
73 | <div align="center">
|
---|
74 | <a href="{U_BACK}">{L_BACK}</a>
|
---|
75 | </div>
|
---|
76 | </td>
|
---|
77 | </tr>
|
---|
78 | </table>
|
---|
79 | </td>
|
---|
80 | </tr>
|
---|
81 | </table>
|
---|
82 |
|
---|
83 | <!-- ENDIF -->
|
---|
84 |
|
---|
85 | <!-- INCLUDE overall_footer.html -->
|
---|