SOFM/terms.php

48 lines
884 B
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");
print <<<EOD
<div class='ptitle'>$title - Terms of Service</div>
<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>
EOD;
include_once("footer.php");
?>