terms.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. //$header = file_get_contents("header.txt");
  3. //echo $header;
  4. //$page_title = "Drive";
  5. //$indir = "true";
  6. //include_once("../data/header.php");
  7. include("config.php");
  8. include_once("header.php");
  9. echo "<div class='ptitle'>$title: $desc ~ terms of usage</div>\n";
  10. print <<<EOD
  11. <div id="ctrlnav" style="text-align: left;">
  12. <table>
  13. <tr>
  14. <td>
  15. 1: Copyrighted content is strictly forbidden!
  16. </td>
  17. </tr>
  18. <tr>
  19. <td>
  20. 2: Patching ".." into the control panel url is forbidden, and your external IP address will be logged.
  21. </td>
  22. </tr>
  23. <tr>
  24. <td>
  25. 3: Explicit content is forbidden.
  26. </td>
  27. </tr>
  28. <tr>
  29. <td>
  30. 4: Information that is not directly linked to you and is reported to us is forbidden. Be respectful to others.
  31. </td>
  32. </tr>
  33. <tr>
  34. <td>
  35. 5: All files uploaded to FreeHost can be viewed by the outside world! By no means is this a secure place for file backups.
  36. </td>
  37. </tr>
  38. <tr>
  39. <td>
  40. 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.
  41. </td>
  42. </tr>
  43. </table>
  44. <br />
  45. <div style="font-weight: bold;">DMCA / Contact:</div>
  46. cddo [AT] riseup [DOT] net
  47. </div>
  48. EOD;
  49. include_once("footer.php");
  50. ?>