summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Brill <opensource@christophbrill.de>2021-04-09 20:55:17 +0000
committerChristoph Brill <opensource@christophbrill.de>2021-04-09 20:55:17 +0000
commitc1f2ab1e072e2c7799b31421d7cbafa33e04347b (patch)
tree9c5aaa02e62afebd2c60a9479fbe7eb4ead6fff3
parent44b3c221434c65861fcea0eda092b6b9f924240e (diff)
Add privacy statement
-rw-r--r--privacy.php83
1 files changed, 83 insertions, 0 deletions
diff --git a/privacy.php b/privacy.php
new file mode 100644
index 0000000..5ece4d1
--- /dev/null
+++ b/privacy.php
@@ -0,0 +1,83 @@
+<?php
+
+/**
+ * Copyright 2009-2021 Christoph Brill <opensource@christophbrill.de>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ *
+ * @category Web
+ * @package DRI\HTML
+ * @author Christoph Brill <egore911@gmail.com>
+ * @copyright 2012-2021 Christoph Brill <egore911@gmail.com>
+ * @license MIT https://opensource.org/licenses/MIT
+ * @link https://people.freedesktop.org/~cbrill/
+ */
+echo '<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1"> <title>'.$title.'</title>
+ <link rel="shortcut icon" href="favicon.ico" />
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
+ <style type="text/css">
+body { padding-top: 60px; }
+#setupdiv {position: absolute; top: 8.6em; right: 2em; width: 18em; background-color:white; border:solid 1px gray; padding: 10px;}
+html { position: relative; min-height: 100%; }
+body { margin-bottom: 60px; }
+.footer { position: absolute; bottom: 0; width: 100%; height: 45px; background-color: #f5f5f5; }
+div.checkbox { margin-left: 10px; }
+ul#usernames li > span { margin-left: 10px; }
+ul#usernames li > span > a, a.inherit { color: inherit; }
+a.inherit:hover { text-decoration: none; }
+.time, .username { font-weight: bold; }
+div.container-fluid span a { overflow-wrap: break-word; }
+ </style>'.PHP_EOL;
+echo ' </head>
+ <body>
+ <nav class="navbar navbar-default navbar-fixed-top">
+ <div class="container-fluid">
+ <div class="navbar-header">
+ <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
+ <span class="sr-only">Toggle navigation</span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ </button>
+ <a class="navbar-brand" href="index.php">Home</a>
+ </div>
+ <div id="navbar" class="collapse navbar-collapse">
+ </div>
+ </div>
+ </nav>
+ <div class="container-fluid">'.PHP_EOL;
+echo '<h1>Liability for contents</h1>
+<p>The service provider is responsible for its own content on these pages in accordance with general laws. However, the service provider is not obliged to monitor transmitted or stored third-party information or to investigate circumstances that indicate illegal activity. Obligations to remove or block the use of information according to the general laws remain unaffected. However, liability in this regard is only possible from the point in time at which a concrete infringement of the law becomes known. If we become aware of any such infringements, the content in question will be removed immediately.</p>
+<h1>Liability for links</h1>
+<p>The offer contains links to external websites of third parties, on whose contents the operator has no influence. Therefore, no responsibility is taken for these external contents. The respective provider or operator of the pages is always responsible for the content of the linked pages. The linked pages were not checked for possible legal violations at the time of linking. However, a permanent control of the contents of the linked pages is not reasonable without concrete evidence of a violation of the law. Such links will be removed immediately if infringements become known.</p>
+<h1>Copyright</h1>
+<p>The contents and works on these pages created by the site operators are subject to the respective copyright of the author. Duplication, processing, distribution, or any form of commercialization of such material beyond the scope of the copyright law shall require the prior written consent of its respective author or creator. Downloads and copies of this site are only permitted for private, non-commercial use. Insofar as the content on this site was not created by the operator, the copyrights of third parties are respected. In particular, third-party content is identified as such. Should you nevertheless become aware of a copyright infringement, please inform me accordingly. If I become aware of any infringements, I will remove such content immediately.</p>'.PHP_EOL;
+echo ' </div>
+ <footer class="footer">
+ <div class="container-fluid">
+ <span class="text-muted"><a href="mailto:egore911%20-%20at%20%21%20egore911%20/%20de">Christoph Brill</a> © 2007-'.date('Y').'<a href="https://play.google.com/store/apps/details?id=de.egore911.drilog"><img src="https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png" height="45" /></a></span>
+ </div>
+ </footer>
+ </body>
+</html>'.PHP_EOL;