54 lines
1.0 KiB
PHP
Executable File
54 lines
1.0 KiB
PHP
Executable File
<?php
|
|
|
|
//$header = file_get_contents("header.txt");
|
|
//echo $header;
|
|
|
|
//$page_title = "Drive";
|
|
//$indir = "true";
|
|
//include_once("../data/header.php");
|
|
|
|
include("config.php");
|
|
|
|
include_once("header.php");
|
|
|
|
echo "<div class='ptitle'>$title: $desc ~ terms of usage</div>\n";
|
|
print <<<EOD
|
|
<div id="ctrlnav" style="text-align: left;">
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
1: Copyrighted content is strictly forbidden!
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
2: Patching ".." into the control panel url is forbidden, and your external IP address will be logged.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
3: Explicit content is forbidden.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
4: Information that is not directly linked to you and is reported to us is forbidden. Be respectful to others.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
If these rules are not followed, your account will be removed without warning.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<br />
|
|
<div style="font-weight: bold;">DMCA / Contact:</div>
|
|
cddo [AT] riseup [DOT] net
|
|
</div>
|
|
EOD;
|
|
|
|
include_once("footer.php");
|
|
|
|
?>
|