Fixed some privacy things
This commit is contained in:
parent
e5168952ce
commit
8dbb1ba335
@ -7,11 +7,11 @@
|
||||
<title>{{ site.title }} {{page.title}}</title>
|
||||
{% feed_meta %}
|
||||
<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 href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" href='{{ "/assets/css/materialize.min.css" | relative_url }}'>
|
||||
<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="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/jquery.min.js' | relative_url }}"></script>
|
||||
<script src="{{ '/assets/js/materialize.min.js' | relative_url }}"></script>
|
||||
<script src="{{ '/assets/js/page.js' | relative_url }}"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -9,9 +9,7 @@
|
||||
<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 href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
|
||||
<!--Icons-->
|
||||
<script async defer src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
|
||||
<link rel="stylesheet" href='{{ "/assets/css/fonts/fontawesome/all.min.css" | relative_url }}'>
|
||||
</head>
|
||||
<body>
|
||||
{% include header.html %}
|
||||
|
@ -86,6 +86,10 @@ main {
|
||||
button {
|
||||
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 {
|
||||
li:not(.disabled) {
|
||||
span {
|
||||
|
@ -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 {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
|
@ -1,9 +1,7 @@
|
||||
---
|
||||
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="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">
|
||||
<link rel="stylesheet" href='{{ "/assets/css/fonts/fontawesome/all.min.css" | relative_url }}'>
|
||||
<div class="container" id="section-wrapper">
|
||||
<section id="communities">
|
||||
<div class="center">
|
||||
|
@ -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://adssettings.google.com/authenticated">https://adssettings.google.com/authenticated</a>.
|
||||
</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>
|
||||
<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ärung:
|
||||
@ -159,6 +175,7 @@ permalink: /datenschutz/
|
||||
Die Daten können in den USA verarbeitet werden. Weitere Informationen können Sie der Datenschutzerklärung von OpenStreetMap entnehmen:
|
||||
<a href="https://wiki.openstreetmap.org/wiki/Privacy_Policy">https://wiki.openstreetmap.org/wiki/Privacy_Policy</a>.
|
||||
</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ß & Partner</a></p>
|
||||
</section>
|
||||
</div>
|
@ -4,7 +4,6 @@ title: '| Kontakt'
|
||||
permalink: '/kontakt/ok/'
|
||||
---
|
||||
<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">
|
||||
<section id="kontakt">
|
||||
<div class="center row">
|
||||
|
@ -45,6 +45,15 @@ permalink: '/kontakt/'
|
||||
<label for="nachricht">Deine Nachricht</label>
|
||||
</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="col s12">
|
||||
<div class="g-recaptcha" data-sitekey="6LecWU0UAAAAAEn0x7omZAzYm-uHdSfA-r8IdLv8"></div>
|
||||
|
Loading…
Reference in New Issue
Block a user