-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprivacy_policy.html
154 lines (146 loc) · 6 KB
/
privacy_policy.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Join - Privacy Policy</title>
<link
rel="shortcut icon"
href="./assets/img/favicon_light.png"
type="image/x-icon"
/>
<script src="./js/header.js"></script>
<script src="./js/sidebar.js"></script>
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./assets/templates/header/header.css" />
<link rel="stylesheet" href="./assets/templates/sidebar/sidebar.css" />
<link rel="stylesheet" href="./assets/css/privacy_policy.css" />
</head>
<body onload="init()">
<main>
<section class="side_bar_container">
<div w3-include-html="./assets/templates/sidebar/sidebar.html"></div>
</section>
<section>
<div w3-include-html="./assets/templates/header/header.html"></div>
<section class="container">
<div class="container_head">
<h1>Privacy Policy</h1>
<a href="#" onclick="history.back(); return false;">
<img src="./assets/img/arrow_back.png" alt="Seite zurück" />
</a>
</div>
<p>
Responsible party within the meaning of data protection laws, in
particular the EU General Data Protection Regulation (GDPR), is:
</p>
<p>Daniel Sinteck</p>
<h2>Your Rights as a Data Subject</h2>
<p>
You can exercise the following rights at any time using the contact
details provided for our data protection officer:
</p>
<ul>
<li>
Information about your stored data and its processing (Art. 15
GDPR),
</li>
<li>Correction of inaccurate personal data (Art. 16 GDPR),</li>
<li>Deletion of your stored data (Art. 17 GDPR),</li>
<li>
Restriction of data processing if we are not yet allowed to delete
your data due to legal obligations (Art. 18 GDPR),
</li>
<li>
Objection to the processing of your data by us (Art. 21 GDPR), and
</li>
<li>
Data portability if you have consented to data processing or have
entered into a contract with us (Art. 20 GDPR).
</li>
</ul>
<p>
If you have given us consent, you can revoke it at any time with
effect for the future.
</p>
<p>
You can lodge a complaint with a supervisory authority at any time,
e.g., the competent supervisory authority of your habitual residence
or the authority responsible for us as the responsible entity.
</p>
<p>
You can find a list of supervisory authorities (for the non-public
sector) with addresses at:
<br />
<a
href="https://www.bfdi.bund.de/DE/Service/Anschriften/Laender/Laender-node.html"
target="_blank"
rel="noopener nofollow"
>https://www.bfdi.bund.de/DE/Service/Anschriften/Laender/Laender-node.html</a
>.
</p>
<h2>Registration on our website</h2>
<h3>Type and purpose of processing:</h3>
<p>
For registration on our website, we require some personal data that
is transmitted to us via an input mask.
</p>
<p>
At the time of registration, the following data is also collected:
</p>
<p>
Your registration is necessary for providing certain content and
services on our website.
</p>
<h3>Legal basis:</h3>
<p>
The processing of the data entered during registration is based on
the user's consent (Art. 6 para. 1 lit. a GDPR).
</p>
<h3>Recipients:</h3>
<p>
Recipients of the data may be technical service providers who act as
processors for the operation and maintenance of our website.
</p>
<h3>Storage period:</h3>
<p>
Data will only be processed in this context for as long as the
respective consent is available.
</p>
<h3>Provision prescribed or required:</h3>
<p>
The provision of your personal data is voluntary, based solely on
your consent. Without providing your personal data, we cannot grant
you access to our offered content.
</p>
<hr />
<h2>Information about your right to object under Art. 21 GDPR</h2>
<h3>Case-specific right to object</h3>
<p>
You have the right to object at any time, for reasons arising from
your particular situation, to the processing of personal data
concerning you under Art. 6 para. 1 lit. f GDPR (data processing
based on a balance of interests); this also applies to profiling
based on this provision within the meaning of Art. 4 No. 4 GDPR.
</p>
<p>
If you object, we will no longer process your personal data unless
we can demonstrate compelling legitimate grounds for processing that
outweigh your interests, rights, and freedoms, or the processing
serves to assert, exercise, or defend legal claims.
</p>
<h3>Recipient of an objection</h3>
<hr />
<h2>Changes to our Privacy Policy</h2>
<p>
We reserve the right to adapt this privacy policy so that it always
complies with current legal requirements or to implement changes to
our services in the privacy policy, such as when introducing new
services. The new privacy policy will apply for your next visit.
</p>
</section>
</section>
</main>
<script src="./script.js"></script>
</body>
</html>