SOFM/terms.php

59 lines
1.2 KiB
PHP
Raw Normal View History

2020-11-03 21:02:37 -08:00
<?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");
2020-11-04 23:25:32 -08:00
echo "<div class='ptitle'>$title: $desc ~ terms of usage</div>\n";
2020-11-03 21:02:37 -08:00
print <<<EOD
2020-11-04 23:25:32 -08:00
<div id="ctrlnav" style="text-align: left;">
2020-11-03 21:02:37 -08:00
<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>
2020-11-22 13:41:09 -08:00
5: All files uploaded to FreeHost can be viewed by the outside world! By no means is this a secure place for file backups.
</td>
</tr>
<tr>
<td>
By using FreeHost as a service, you agree to these terms of usage. If these rules are not followed, your account will be removed without warning.
2020-11-03 21:02:37 -08:00
</td>
</tr>
</table>
2020-11-04 23:25:32 -08:00
<br />
<div style="font-weight: bold;">DMCA / Contact:</div>
cddo [AT] riseup [DOT] net
</div>
2020-11-03 21:02:37 -08:00
EOD;
include_once("footer.php");
?>