Fixed some privacy things

This commit is contained in:
Leo Maroni 2018-09-13 18:38:36 +02:00
parent e5168952ce
commit 8dbb1ba335
No known key found for this signature in database
GPG Key ID: D1C3D579B60CB591
8 changed files with 76 additions and 13 deletions

View File

@ -7,11 +7,11 @@
<title>{{ site.title }} {{page.title}}</title> <title>{{ site.title }} {{page.title}}</title>
{% feed_meta %} {% feed_meta %}
<link rel="stylesheet" href='{{ "/assets/css/page.css" | relative_url }}'> <link rel="stylesheet" href='{{ "/assets/css/page.css" | relative_url }}'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.1/css/materialize.min.css" integrity="sha256-qj3p6P1fJIV+Ndv7RW1ovZI2UhOuboj9GcODzcNFIN8=" crossorigin="anonymous" /> <link rel="stylesheet" href='{{ "/assets/css/materialize.min.css" | relative_url }}'>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link rel="stylesheet" href='{{ "/assets/css/material-icons.css" | relative_url }}'>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script> <script src="{{ '/assets/js/jquery.min.js' | relative_url }}"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.1/js/materialize.min.js" integrity="sha256-SrBfGi+Zp2LhAvy9M1bWOCXztRU9Ztztxmu5BcYPcPE=" crossorigin="anonymous"></script> <script src="{{ '/assets/js/materialize.min.js' | relative_url }}"></script>
<script src="{{ '/assets/js/page.js' | relative_url }}"></script> <script src="{{ '/assets/js/page.js' | relative_url }}"></script>
</head> </head>
<body> <body>

View File

@ -9,9 +9,7 @@
<link rel="stylesheet" href='{{ "/assets/css/post.css" | relative_url }}'> <link rel="stylesheet" href='{{ "/assets/css/post.css" | relative_url }}'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.1/css/materialize.min.css" integrity="sha256-qj3p6P1fJIV+Ndv7RW1ovZI2UhOuboj9GcODzcNFIN8=" crossorigin="anonymous" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.1/css/materialize.min.css" integrity="sha256-qj3p6P1fJIV+Ndv7RW1ovZI2UhOuboj9GcODzcNFIN8=" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href='{{ "/assets/css/fonts/fontawesome/all.min.css" | relative_url }}'>
<!--Icons-->
<script async defer src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
</head> </head>
<body> <body>
{% include header.html %} {% include header.html %}

View File

@ -86,6 +86,10 @@ main {
button { button {
background-color: $ff_magenta; background-color: $ff_magenta;
} }
input[type="checkbox"]:checked+span:not(.lever):before {
border-right-color: $ff_magenta !important;
border-bottom-color: $ff_magenta !important;
}
.dropdown-content { .dropdown-content {
li:not(.disabled) { li:not(.disabled) {
span { span {

View File

@ -1,4 +1,42 @@
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400'); /* roboto-100 - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 100;
src: url('fonts/roboto-v18-latin-100.eot'); /* IE9 Compat Modes */
src: local('Roboto Thin'), local('Roboto-Thin'),
url('fonts/roboto-v18-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/roboto-v18-latin-100.woff2') format('woff2'), /* Super Modern Browsers */
url('fonts/roboto-v18-latin-100.woff') format('woff'), /* Modern Browsers */
url('fonts/roboto-v18-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */
url('fonts/roboto-v18-latin-100.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-300 - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url('fonts/roboto-v18-latin-300.eot'); /* IE9 Compat Modes */
src: local('Roboto Light'), local('Roboto-Light'),
url('fonts/roboto-v18-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/roboto-v18-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
url('fonts/roboto-v18-latin-300.woff') format('woff'), /* Modern Browsers */
url('fonts/roboto-v18-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
url('fonts/roboto-v18-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url('fonts/roboto-v18-latin-regular.eot'); /* IE9 Compat Modes */
src: local('Roboto'), local('Roboto-Regular'),
url('fonts/roboto-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('fonts/roboto-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('fonts/roboto-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
url('fonts/roboto-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('fonts/roboto-v18-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
body { body {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
} }

View File

@ -1,9 +1,7 @@
--- ---
layout: page layout: page
--- ---
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.12/css/solid.css" integrity="sha384-VxweGom9fDoUf7YfLTHgO0r70LVNHP5+Oi8dcR4hbEjS8UnpRtrwTx7LpHq/MWLI" crossorigin="anonymous"> <link rel="stylesheet" href='{{ "/assets/css/fonts/fontawesome/all.min.css" | relative_url }}'>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.12/css/brands.css" integrity="sha384-Pln/erVatVEIIVh7sfyudOXs5oajCSHg7l5e2Me02e3TklmDuKEhQ8resTIwyI+w" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.12/css/fontawesome.css" integrity="sha384-rnr8fdrJ6oj4zli02To2U/e6t1qG8dvJ8yNZZPsKHcU7wFK3MGilejY5R/cUc5kf" crossorigin="anonymous">
<div class="container" id="section-wrapper"> <div class="container" id="section-wrapper">
<section id="communities"> <section id="communities">
<div class="center"> <div class="center">

View File

@ -149,6 +149,22 @@ permalink: /datenschutz/
<a href="https://www.google.com/policies/privacy/">https://www.google.com/policies/privacy/</a>, Opt-Out: <a href="https://www.google.com/policies/privacy/">https://www.google.com/policies/privacy/</a>, Opt-Out:
<a href="https://adssettings.google.com/authenticated">https://adssettings.google.com/authenticated</a>. <a href="https://adssettings.google.com/authenticated">https://adssettings.google.com/authenticated</a>.
</p> </p>
<h4>Google reCAPTCHA</h4>
<p>
Wir setzen Google reCAPTCHA zur Überprüfung und Vermeidung von Interaktionen auf unserer Internetseite durch automatisierte Zugriffe, bspw. durch sog. Bots, ein. Es handelt sich hierbei um einen Dienst der Google LLC, 1600 Amphitheatre Parkway, Mountain View, CA 94043 USA, nachfolgend nur „Google“ genannt.
<br><br>
Durch die Zertifizierung nach dem EU-US-Datenschutzschild („EU-US Privacy Shield“)
<br><br>
<a href="https://www.privacyshield.gov/participant?id=a2zt000000001L5AAI&status=Active">https://www.privacyshield.gov/participant?id=a2zt000000001L5AAI&status=Active</a>
<br><br>
garantiert Google, dass die Datenschutzvorgaben der EU auch bei der Verarbeitung von Daten in den USA eingehalten werden.
<br><br>
Durch diesen Dienst kann Google ermitteln, von welcher Webseite eine Anfrage gesendet wird sowie von welcher IP-Adresse aus Sie die sog. reCAPTCHA-Eingabebox verwenden. Neben Ihrer IP-Adresse werden womöglich noch weitere Informationen durch Google erfasst, die für das Angebot und die Gewährleistung dieses Dienstes notwendig sind.
<br><br>
Rechtsgrundlage ist Art. 6 Abs. 1 lit. f) DSGVO. Unser berechtigtes Interesse liegt in der Sicherheit unseres Internetauftritts sowie in der Abwehr unerwünschter, automatisierter Zugriffe in Form von Spam o.ä..
<br><br>
Google bietet unter <a href="https://policies.google.com/privacy">https://policies.google.com/privacy</a> weitergehende Informationen zu dem allgemeinen Umgang mit Ihren Nutzerdaten an.
</p>
<h4>OpenStreetMap</h4> <h4>OpenStreetMap</h4>
<p> <p>
Wir binden die Landkarten des Dienstes "OpenStreetMap" ein (<a href="https://www.openstreetmap.de">https://www.openstreetmap.de</a>), die auf Grundlage der Open Data Commons Open Database Lizenz (ODbL) durch die OpenStreetMap Foundation (OSMF) angeboten werden. Datenschutzerkl&auml;rung: Wir binden die Landkarten des Dienstes "OpenStreetMap" ein (<a href="https://www.openstreetmap.de">https://www.openstreetmap.de</a>), die auf Grundlage der Open Data Commons Open Database Lizenz (ODbL) durch die OpenStreetMap Foundation (OSMF) angeboten werden. Datenschutzerkl&auml;rung:
@ -159,6 +175,7 @@ permalink: /datenschutz/
Die Daten k&ouml;nnen in den USA verarbeitet werden. Weitere Informationen k&ouml;nnen Sie der Datenschutzerkl&auml;rung von OpenStreetMap entnehmen: Die Daten k&ouml;nnen in den USA verarbeitet werden. Weitere Informationen k&ouml;nnen Sie der Datenschutzerkl&auml;rung von OpenStreetMap entnehmen:
<a href="https://wiki.openstreetmap.org/wiki/Privacy_Policy">https://wiki.openstreetmap.org/wiki/Privacy_Policy</a>. <a href="https://wiki.openstreetmap.org/wiki/Privacy_Policy">https://wiki.openstreetmap.org/wiki/Privacy_Policy</a>.
</p> </p>
<p>Erstellt mit <a href="https://datenschutz-generator.de/">Datenschutz-Generator.de von RA Dr. Thomas Schwenke</a></p> <p>Erstellt mit <a href="https://datenschutz-generator.de/">Datenschutz-Generator.de von RA Dr. Thomas Schwenke</a><br>
Teil zu reCAPTCHA aus der <a target="_blank" href="https://www.ratgeberrecht.eu/leistungen/muster-datenschutzerklaerung.html">Muster-Datenschutzerklärung</a> der <a target="_blank" href="https://www.ratgeberrecht.eu/">Anwaltskanzlei Weiß &amp; Partner</a></p>
</section> </section>
</div> </div>

View File

@ -4,7 +4,6 @@ title: '| Kontakt'
permalink: '/kontakt/ok/' permalink: '/kontakt/ok/'
--- ---
<script src="{{ '/assets/js/kontakt.js' | relative_url }}"></script> <script src="{{ '/assets/js/kontakt.js' | relative_url }}"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<div class="container" id="section-wrapper"> <div class="container" id="section-wrapper">
<section id="kontakt"> <section id="kontakt">
<div class="center row"> <div class="center row">

View File

@ -45,6 +45,15 @@ permalink: '/kontakt/'
<label for="nachricht">Deine Nachricht</label> <label for="nachricht">Deine Nachricht</label>
</div> </div>
</div> </div>
<div class="row col s12">
<p>
<label>
<input type="checkbox" required name="dsgvo" />
<span>Ich habe die <a href="{{ site.baseurl }}{% link datenschutz.html %}">Datenschutzerklärung</a> zur Kenntnis genommen. Ich stimme zu, dass meine Angaben und Daten zur Beantwortung meiner Anfrage elektronisch erhoben und gespeichert werden.
Hinweis: Sie können Ihre Einwilligung jederzeit für die Zukunft per E-Mail an kontakt@freifunk-rhein-sieg.net widerrufen.</span>
</label>
</p>
</div>
<div class="row"> <div class="row">
<div class="col s12"> <div class="col s12">
<div class="g-recaptcha" data-sitekey="6LecWU0UAAAAAEn0x7omZAzYm-uHdSfA-r8IdLv8"></div> <div class="g-recaptcha" data-sitekey="6LecWU0UAAAAAEn0x7omZAzYm-uHdSfA-r8IdLv8"></div>