blob: f1ea9df73a3506257f189f80ddd4ae109a3bb374 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<!-- INCLUDE overall_header.html -->
<!-- IF S_SHOW_COPPA or S_REGISTRATION -->
<form method="post" action="{S_UCP_ACTION}">
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<th height="25">{SITENAME} - {L_REGISTRATION}</th>
</tr>
<tr>
<td class="row1" align="center">
<table width="90%" cellspacing="2" cellpadding="2" border="0" align="center">
<tr>
<!-- IF S_SHOW_COPPA -->
<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>
<!-- ELSE -->
<td>
<span class="genmed"><br />{L_TERMS_OF_USE}<br /><br /></span>
<div align="center">
<input class="btnlite" type="submit" id="agreed" name="agreed" value="{L_AGREE}" /><br /><br />
<input class="btnlite" type="submit" name="not_agreed" value="{L_NOT_AGREE}" />
</div>
</td>
<!-- ENDIF -->
</tr>
</table>
</td>
</tr>
</table>
{S_HIDDEN_FIELDS}
{S_FORM_TOKEN}
</form>
<!-- ELSEIF S_AGREEMENT -->
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<th height="25">{SITENAME} - {AGREEMENT_TITLE}</th>
</tr>
<tr>
<td class="row1" align="center">
<table width="90%" cellspacing="2" cellpadding="2" border="0" align="center">
<tr>
<td>
<span class="genmed"><br />{AGREEMENT_TEXT}<br /><br /></span>
<div align="center">
<a href="{U_BACK}">{L_BACK}</a>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- ENDIF -->
<!-- INCLUDE overall_footer.html -->
|