-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
1125 lines (1009 loc) · 68 KB
/
privacy.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="no-js" lang="de">
<head>
<title>OneIOT - Datenschutz</title>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="initial-scale=1.0, user-scalable=no" name="viewport"/>
<meta content="user-scalable=no, width=device-width, height=device-height, initial-scale=1, maximum-scale=1, minimum-scale=1, minimal-ui" name="viewport"/>
<meta content="Die OneIOT All-In-One IoT Cloud bringt jedes Messgeräte ohne Programmieraufwand online." name="description">
<meta content="IoT, Internet der Dinge, IoT Plattform, IoT Gateway, Low Code, IoT Cloud, Messgeräte Cloud, Messgeräte Plattform" name="keywords">
<meta content="OneIOT" name="author">
<!-- =================================================
===== Bootstrap
================================================== -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<!-- =================================================
===== MDBootstrap
================================================== -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.7.6/css/mdb.min.css" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.7.6/js/mdb.min.js"></script>
<!-- =================================================
===== Favicon
================================================== -->
<link href="../img/oneiot/oneiot-icon-rounded.png" rel="shortcut icon" type="image/png">
<!-- =================================================
===== Fontawesome icons
================================================== -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-1/css/all.css" rel="stylesheet" type="text/css">
<!-- =================================================
===== Critical style
================================================== -->
<link href="../css/critical.min.css" rel="stylesheet" type="text/css">
<!-- =================================================
===== Common style
================================================== -->
<link href="../css/style.min.css" rel="stylesheet" type="text/css">
<!-- =================================================
===== Theme style
================================================== -->
<link href="../css/color.min.css" rel="stylesheet" type="text/css">
<!-- =================================================
===== Load Google fonts
================================================== -->
<script type="text/javascript">
WebFontConfig = {
google: {families: ['Nunito+Sans:400,400i,700,700i,800,800i,900,900i', 'Quicksand:300,400,700']}
};
(function () {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') + '://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120681810-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-120681810-2');
</script>
<!-- =================================================
===== Drift scripts
================================================== -->
<!-- Start of Async Drift Code -->
<script>
"use strict";
!function() {
var t = window.driftt = window.drift = window.driftt || [];
if (!t.init) {
if (t.invoked) return void (window.console && console.error && console.error("Drift snippet included twice."));
t.invoked = !0, t.methods = [ "identify", "config", "track", "reset", "debug", "show", "ping", "page", "hide", "off", "on" ],
t.factory = function(e) {
return function() {
var n = Array.prototype.slice.call(arguments);
return n.unshift(e), t.push(n), t;
};
}, t.methods.forEach(function(e) {
t[e] = t.factory(e);
}), t.load = function(t) {
var e = 3e5, n = Math.ceil(new Date() / e) * e, o = document.createElement("script");
o.type = "text/javascript", o.async = !0, o.crossorigin = "anonymous", o.src = "https://js.driftt.com/include/" + n + "/" + t + ".js";
var i = document.getElementsByTagName("script")[0];
i.parentNode.insertBefore(o, i);
};
}
}();
drift.SNIPPET_VERSION = '0.3.1';
drift.load('hcinvii5gir9');
</script>
<!-- =================================================
===== Load other scripts
================================================== -->
<script type="text/javascript">
var _html = document.documentElement,
isTouch = (('ontouchstart' in _html) || (navigator.msMaxTouchPoints > 0) || (navigator.maxTouchPoints));
_html.className = _html.className.replace("no-js", "js");
_html.classList.add(isTouch ? "touch" : "no-touch");
</script>
<script src="../js/device.min.js" type="text/javascript"></script>
</head>
<body>
<div id="app">
<header class="top-bar top-bar--light" data-nav-anchor="true" id="top-bar">
<div class="top-bar__inner">
<div class="container-fluid">
<div class="row align-items-center no-gutters">
<!-- =================================================
===== Logo
================================================== -->
<a class="top-bar__logo site-logo" href="/">
<img alt="demo" class="img-fluid large-logo" src="../img/oneiot/oneiot-logo-white.png" width="100"/>
<img alt="demo" class="img-fluid sticky-logo" src="../img/oneiot/oneiot-logo-sticky.png" width="100"/>
</a>
<!-- =================================================
===== Responsive navigation bar toggle
================================================== -->
<a class="top-bar__navigation-toggler" href="javascript:void(0);" id="top-bar__navigation-toggler">
<span></span>
</a>
<!-- =================================================
===== Main navigation
================================================== -->
<div class="top-bar__collapse">
<!-- =================================================
===== Main navigation
================================================== -->
<nav class="top-bar__navigation" id="top-bar__navigation" role="navigation">
<ul>
<li class="has-submenu">
<a class="nav-link">Produkte</a>
<ul class="submenu submenu">
<div class="column-nav">
<ul>
<li>
<a class="item-title" href="gateway">
Industrial Gateway 4.0
<br/>
<span class="small">Bringt jedes Messgeräte online</span>
</a>
</li>
<li>
<a class="item-title" href="app">
Messgeräte Anwendung
<br/>
<span class="small">Online Zugriff auf alle Messgeräte</span>
</a>
</li>
<li>
<a class="item-title" href="iot-platform">
Messgeräte Plattform
<br/>
<span class="small">Services für Messgeräte Anwendungen</span>
</a>
</li>
</ul>
</div>
</ul>
</li>
<li class="has-submenu">
<a class="nav-link">Lösungen</a>
<ul class="submenu submenu">
<div class="column-nav">
<ul>
<li>
<a class="item-title" href="monitoring">
Messwerte Überwachung
<br/>
<span class="small">Visualisierung in Echtzeit</span>
</a>
</li>
<li>
<a class="item-title" href="control">
Messgeräte Steuerung
<br/>
<span class="small">Fernzugriff zu jeder Zeit</span>
</a>
</li>
<li>
<a class="item-title" href="alerts">
Frühwarnsystem
<br/>
<span class="small">Warnmeldungen per SMS & E-Mail</span>
</a>
</li>
<li>
<a class="item-title" href="debugging">
Messgeräte Diagnosen
<br/>
<span class="small">Fernprüfung aller Messgeräte</span>
</a>
</li>
</ul>
</div>
</ul>
</li>
<li><a class="nav-link" href="../pricing">Preise</a></li>
</ul>
</nav>
<!-- =================================================
===== Action navigation
================================================== -->
<div class="top-bar__action" id="top-bar__action">
<div class="d-xl-flex flex-xl-row flex-xl-wrap align-items-xl-center">
<!-- =================================================
===== Language chooser
================================================== -->
<!-- <div class="top-bar__choose-lang js-choose-lang text-shadow">-->
<!-- <div class='current-lang',><i><img alt='demo' class='circled' height='25' src='../img/icon/de.png' width='25'/></i><span>De</span></div>-->
<!-- <div class="list-wrap">-->
<!-- <ul class="list">-->
<!-- <li class="" data-img="../img/icon/en.png"-->
<!-- data-short-name="En">-->
<!-- <a href="../en/">-->
<!-- <span>Englisch</span>-->
<!-- </a>-->
<!-- </li>-->
<!-- <li class="is-active" data-img="../img/icon/de.png"-->
<!-- data-short-name="De">-->
<!-- <a href="../de/">-->
<!-- <span>Deutsch</span>-->
<!-- </a>-->
<!-- </li>-->
<!-- </ul>-->
<!-- </div>-->
<!-- </div>-->
<a class="ml-4" target="_blank" href="https://app.easytoi.com">
Login
</a>
<a class="ml-4" target="_blank" href="https://app.easytoi.com">
<button class="custom-btn custom-btn--medium dashboard-btn custom-btn--style-4 medium" role="button"
type="submit">
Registrieren
</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="header-progress-bar">
<div class="progress-container">
<div class="progress-bar" id="myBar"></div>
</div>
</div>
<div class="hero jarallax" style="background: url('../img/banner/banner-2.png')" data-img-position="50% 90%" data-speed="0.7" id="hero">
<div class="container">
<h2 class="__title text-white text-center text-shadow">Datenschutz</h2>
<p class="section-heading--center text-shadow">
Wir haben nichts zu verbergen. Wenn Sie Fragen haben, zögern Sie nicht, uns zu kontaktieren
</p>
</div>
<div class="background-overlay"></div>
</div>
<main role="main">
<script>
(function (w, d) {
var m = d.getElementsByTagName('main')[0],
s = d.createElement("script"),
v = !("IntersectionObserver" in w) ? "8.17.0" : "12.0.0",
o = {
elements_selector: ".lazy",
threshold: 500,
callback_enter: function (element) {
},
callback_load: function (element) {
},
callback_set: function (element) {
oTimeout = setTimeout(function () {
clearTimeout(oTimeout);
AOS.refresh();
}, 1000);
},
callback_error: function (element) {
element.src = "https://placeholdit.imgix.net/~text?txtsize=21&txt=Image%20not%20load&w=200&h=200";
}
};
s.type = 'text/javascript';
s.async = false; // This includes the script as async. See the "recipes" section for more information about async loading of LazyLoad.
s.src = "https://cdn.jsdelivr.net/npm/vanilla-lazyload@" + v + "/dist/lazyload.min.js";
m.appendChild(s);
// m.insertBefore(s, m.firstChild);
w.lazyLoadOptions = o;
}(window, document));
</script>
<section class="section">
<div class="container">
<div class="row">
<div class="col-12">
<p>
Responsible body within the meaning of data protection laws, in particular the EU Data
Protection Ordinance (DSGVO). Please read our privacy policy carefully to get a clear
understanding of how we collect, use, protect or otherwise handle your Personally
Identifiable Information in accordance with our website.
</p>
<p>
<span style="font-family:monospace !important;font-size: 20px;">OneIoT UG (haftungsbeschränkt)</span>
<br/>
+49 172 - 232 51 02
<br/>
contact@oneiot.de
<br/>
Ostring 27, 76829 Landau
<br/>
Germany
</p>
<h4>Your rights</h4>
<p>
You can exercise the following rights at any time using our contact details.
Information about your data stored with us and their processing
Correction of incorrect personal data
Deletion of your data stored with us
Restriction of data processing if we are not yet allowed to delete your data due to legal
obligations
Objection to the processing of your data by us and Data transferability if you have
consented to data processing or have concluded a contract with us
If you have given us your consent, you can revoke it at any time with effect for the future.
</p>
<p>
You can contact your local supervisory authority at any time with a complaint. Your
competent supervisory authority depends on your state of residence, your work or the alleged
infringement. A list of supervisory authorities (for the non-public sector) with addresses
can be found at: https://www.bfdi.bund.de/DE/Home/home_node.html.
</p>
<h4>What personal information do we collect from the people that visit our website?</h4>
<p>
Inventory data (e.g., names, addresses)
Contact details (e.g., e-mail, telephone numbers)
Content data (e.g., text input, photographs, videos)
Usage data (e.g., visited websites, interest in content, access times)
Meta and communication data (e.g., device information, IP addresses)
</p>
<h4>When do we collect information?</h4>
<p>
You contact us per mail or phone
Subscribe to a newsletter
Fill out a form
Use live chat
Open a support ticket
Enter information on our site
</p>
<h4>Why do we collect information?</h4>
<p>
We may use the information we collect from you when you register, make a purchase, sign up
for our newsletter, respond to a survey or marketing communication, surf the website, or use
certain other site features in the following ways.
</p>
<p>
Provision of the online offer, its functions and contents
To personalize your experience and to allow us to deliver the type of content and product
offerings in which you are most interested
Answer contact requests and communicate with users
Security measures
To improve our website in order to better serve you
To allow us to better service you in responding to your customer service requests
To follow up with them after correspondence (live chat, email or phone inquiries)
Range measurement and marketing
</p>
<h4>Legal basis</h4>
<p>
In accordance with Art. 13 DSGVO, we inform you of the legal basis of our data processing.
If the legal basis is not mentioned in the data protection declaration, the following
applies: The legal basis for obtaining consents is Art. 6 para. 1 lit. a and Art. 7 DSGVO,
the legal basis for processing for the performance of our services and performance of
contractual measures as well as for answering inquiries is Art. 6 para. 1 lit. b DSGVO, the
legal basis for processing to fulfil our legal obligations is Art. 6 para. 1 lit. c DSGVO,
and the legal basis for processing to protect our legitimate interests is Art. 6 para. 1
lit. f DSGVO. In the event that the vital interests of the data subject or another natural
person require the processing of personal data, Article 6(1)(d) DSGVO serves as the legal
basis.
</p>
<h4> Safety measures</h4>
<p>
We take appropriate technical and organisational measures to ensure a level of protection
appropriate to the risk, taking into account the state of the art, implementation costs and
the nature, scope, circumstances and purposes of processing as well as the different
probability of occurrence and severity of the risk to the rights and freedoms of natural
persons, in accordance with Art. 32 DSGVO. Such measures shall in particular include
ensuring the confidentiality, integrity and availability of data by controlling physical
access to the data, as well as the access, input, transmission, security of availability and
its separation. Furthermore, we have established procedures to ensure the exercise of rights
of data subjects, deletion of data and reaction to endangerment of data. Furthermore, we
already consider the protection of personal data during the development or selection of
hardware, software and procedures, in accordance with the principle of data protection
through technology design and data protection-friendly presettings (Art. 25 DSGVO).
</p>
<h4>SSL encryption</h4>
<p>
To protect the security of your data during transmission, we use state-of-the-art encryption
methods (e.g. SSL) via HTTPS.
<h4>Cooperation with order processors and third parties</h4>
<p>
If we disclose data to other persons and companies (contract processors or third parties)
within the scope of our processing, transmit it to them or otherwise grant them access to
the data, this shall only take place on the basis of a legal permission (e.g. if a
transmission of the data to third parties, such as payment service providers, in accordance
with Art. 6 Para. 1 lit. b DSGVO for contract fulfilment is necessary), if you have
consented, if a legal obligation provides for this or on the basis of our legitimate
interests (e.g. when using agents, web hosts, etc.). If we commission third parties with the
processing of data on the basis of a so-called "order processing contract", this is done on
the basis of Art. 28 DSGVO.
</p>
<h4>Transmission to third countries</h4>
<p>
If we process data in a third country (i.e. outside the European Union (EU) or the European
Economic Area (EEA)) or if this occurs in the context of the use of third-party services or
disclosure or transfer of data to third parties, this only takes place if it occurs for the
fulfilment of our (pre)contractual obligations, on the basis of your consent, on the basis
of a legal obligation or on the basis of our legitimate interests. Subject to legal or
contractual permissions, we process or leave the data in a third country only if the special
requirements of Art. 44 ff. Process DSGVO. This means, for example, processing is carried
out on the basis of special guarantees, such as the officially recognised determination of a
data protection level corresponding to the EU (e.g. for the USA by the "Privacy Shield") or
compliance with officially recognised special contractual obligations (so-called "standard
contractual clauses").
</p>
<h4>Cookies</h4>
<p>
Cookies" are small files that are stored on the user's computer. Different data can be
stored within the cookies. A cookie is primarily used to store information about a user (or
the device on which the cookie is stored) during or after his or her visit to an online
offer. Temporary cookies, or "session cookies" or "transient cookies", are cookies that are
deleted after a user leaves an online offer and closes his browser. In such a cookie, for
example, the content of a shopping basket in an online shop or a login status can be stored.
Cookies are referred to as "permanent" or "persistent" and remain stored even after the
browser is closed. For example, the login status can be saved when users visit it after
several days. Likewise, the interests of users used for range measurement or marketing
purposes may be stored in such a cookie. Third-party cookies" are cookies that are offered
by providers other than the person responsible for operating the online offer (otherwise, if
they are only its cookies, they are referred to as "first-party cookies"). We may use
temporary and permanent cookies and clarify this within the framework of our data protection
declaration. If users do not want cookies to be stored on their computer, they are asked to
deactivate the corresponding option in the system settings of their browser. Stored cookies
can be deleted in the system settings of the browser. The exclusion of cookies can lead to
functional restrictions of this online offer. A general objection to the use of cookies used
for online marketing purposes can be declared for many of the services, especially in the
case of tracking, via the US site http://www.aboutads.info/choices/ or the EU site
http://www.youronlinechoices.com/. Furthermore, the storage of cookies can be achieved by
deactivating them in the browser settings. Please note that in this case not all functions
of this online offer can be used.
</p>
<h4>Delete your data</h4>
<p>
The data processed by us will be deleted or their processing restricted in accordance with
Articles 17 and 18 DSGVO. Unless expressly stated in this data protection declaration, the
data stored by us will be deleted as soon as it is no longer required for its intended
purpose and the deletion does not conflict with any statutory storage obligations. If the
data are not deleted because they are necessary for other and legally permissible purposes,
their processing is restricted. This means that the data is blocked and not processed for
other purposes. This applies, for example, to data that must be retained for commercial or
tax reasons. According to legal requirements in Germany, the storage is carried out in
particular for 10 years in accordance with §§ 147 para. 1 AO, 257 para. 1 no. 1 and 4, para.
4 HGB (books, records, management reports, accounting documents, trading books, documents
relevant for taxation, etc.) and 6 years in accordance with § 257 para. 1 no. 2 and 3, para.
4 HGB (commercial letters).
</p>
<h4>Business related processing</h4>
<p>
Additionally we process:
Contract data (for example, contract object, term, customer category)
Payment data (e.g., bank details, payment history) from our customers, prospects and
business partners for the purpose of providing contractual services, service and customer
care, marketing, advertising and market research
</p>
<h4>Making contact</h4>
<p>
When contacting us (e.g. via contact form, e-mail, telephone or social media), the user's
details are processed for processing the contact enquiry and its processing in accordance
with Art. 6 para. 1 lit. b) DSGVO. User information can be stored in a customer relationship
management system ("CRM system") or comparable request organization.
<p>
We delete the requests if they are no longer necessary. The statutory archiving obligations
also apply.
</p>
<h4>Newsletter</h4>
<p>
With the following information we inform you about the contents of our newsletter as well as
the registration, dispatch and statistical evaluation procedure and your rights of
objection. By subscribing to our newsletter you agree to the receipt and the described
procedures.
</p>
<p>
Content of the newsletter: We send newsletters, e-mails and other electronic notifications
containing advertising information (hereinafter "newsletters") only with the consent of the
recipients or a legal permission. If the contents of a newsletter are specifically described
within the scope of a registration, they are decisive for the consent of the users. In
addition, our newsletters contain information about our services and us.
</p>
<p>
Double opt-in and logging: Subscription to our newsletter takes place in a so-called double
opt-in procedure. This means that after registration you will receive an e-mail asking you
to confirm your registration. This confirmation is necessary so that no one can log in with
other e-mail addresses. Subscriptions to the newsletter are logged in order to be able to
prove the registration process in accordance with legal requirements. This includes the
storage of the login and confirmation time, as well as the IP address. The changes to your
data stored with the shipping service provider are also logged.
</p>
<p>
Credentials: To subscribe to the newsletter, simply enter your e-mail address. Optionally,
we ask you to enter a name in the newsletter in order to address us personally.
</p>
<p>
The dispatch of the newsletter and the performance measurement associated with it are based
on the recipient's consent pursuant to Art. 6 para. 1 lit. a, Art. 7 DSGVO in conjunction
with § 7 para. 2 no. 3 UWG or, if consent is not required, on the basis of our legitimate
interests in direct marketing pursuant to Art. 6 para. 1 lt. f. DSGVO in conjunction with
Section 7 para. 3 UWG.
</p>
<p>
The registration procedure is recorded on the basis of our legitimate interests pursuant to
Art. 6 para. 1 lit. f DSGVO. We are interested in the use of a user-friendly and secure
newsletter system that serves both our business interests and the expectations of users and
also allows us to provide proof of consent.
</p>
<p>
Cancellation/Revocation - You can cancel the receipt of our newsletter at any time, i.e.
revoke your consent. You will find a link to cancel the newsletter at the end of each
newsletter. We may store the e-mail addresses we have unsubscribed for up to three years on
the basis of our legitimate interests before we delete them in order to be able to prove a
previously given consent. The processing of these data is limited to the purpose of a
possible defence against claims. An individual application for cancellation is possible at
any time, provided that at the same time the former existence of a consent is confirmed.
<h4>Newsletter measurement</h4>
<p>
The newsletters contain a so-called "web-beacon", i.e. a pixel-sized file which is
downloaded from our server when the newsletter is opened or, if we use a shipping service
provider, from whose server. Within the scope of this retrieval, technical information, such
as information about the browser and your system, as well as your IP address and time of
retrieval are initially collected.
</p>
<p>
This information is used to technically improve the services based on the technical data or
the target groups and their reading behaviour based on their retrieval locations (which can
be determined using the IP address) or access times. The statistical surveys also include
determining whether the newsletters are opened, when they are opened and which links are
clicked. For technical reasons, this information can be assigned to the individual
newsletter recipients. However, it is neither our endeavour, nor, if used, that of the
shipping service provider, to observe individual users. The evaluations serve us much more
to recognize the reading habits of our users and to adapt our contents to them or to send
different contents according to the interests of our users.
</p>
<p>
A separate revocation of the success measurement is unfortunately not possible, in this case
the entire newsletter subscription must be cancelled.
</p>
<h4>Hosting and Mailing</h4>
<p>
The hosting services we use serve to provide the following services: Infrastructure and
platform services, computing capacity, storage space and database services, e-mail delivery,
security services and technical maintenance services that we use for the purpose of
operating this online offer.
</p>
<p>
We or our hosting provider process inventory data, contact data, content data, contract
data, usage data, meta- and communication data of customers, interested parties and visitors
of this online offer on the basis of our legitimate interests in an efficient and secure
provision of this online offer according to Art. 6 Para. 1 lit. f DSGVO in conjunction with.
Art. 28 DSGVO (conclusion of order processing contract).
</p>
<h4>Social media</h4>
<p>
We maintain online presences within social networks and platforms in order to communicate
with active customers, interested parties and users and to inform them about our services.
</p>
<p>
We would like to point out that user data can be processed outside the European Union. This
can pose risks for users because, for example, the enforcement of users' rights could be
made more difficult. With regard to US providers certified under the Privacy Shield, we
would like to point out that they commit themselves to comply with EU data protection
standards.
</p>
<p>
Furthermore, user data is usually processed for market research and advertising purposes.
Thus, for example, user profiles can be created from the user behavior and the resulting
interests of the users. The usage profiles can in turn be used, for example, to place
advertisements inside and outside the platforms that presumably correspond to the interests
of the users. For these purposes, cookies are usually stored on the user's computer, in
which the user's usage behavior and interests are stored. Furthermore, data can also be
stored in the user profiles independently of the devices used by the users (especially if
the users are members of the respective platforms and are logged in to these).
</p>
<p>
The processing of users' personal data is carried out on the basis of our legitimate
interests in effective user information and communication with users pursuant to Art. 6
para. 1 lit. f. DSGVO. If the users are asked by the respective providers for consent to
data processing (i.e. to give their consent e.g. by ticking a checkbox or confirming a
button), the legal basis of processing is Art. 6 para. 1 lit. a., Art. 7 DSGVO.
</p>
<p>
For a detailed description of the respective processing and the possibilities of objection
(opt-out), we refer to the information provided by the providers linked below.
</p>
<p>
Also in the case of requests for information and the assertion of user rights, we point out
that these can be asserted most effectively with the providers. Only the providers have
access to the data of the users and can directly take appropriate measures and provide
information. If you still need help, you can contact us.
</p>
<p>
Facebook (Facebook Ireland Ltd., 4 Grand Canal Square, Grand Canal Harbour, Dublin 2,
Ireland) <br>
Privacy Policy: https://www.facebook.com/about/privacy/ , <br>
Opt-Out: https://www.facebook.com/settings?tab=ads and http://www.youronlinechoices.com,
<br>
Privacy Shield:
https://www.privacyshield.gov/participant?id=a2zt0000000GnywAAC&status=Active.
</p>
<p>
Google/YouTube (Google LLC, 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA) <br>
Privacy Policy: https://policies.google.com/privacy, <br>
Opt-Out: https://adssettings.google.com/authenticated, <br>
Privacy Shield:
https://www.privacyshield.gov/participant?id=a2zt000000001L5AAI&status=Active.
</p>
<p>
Instagram (Instagram Inc., 1601 Willow Road, Menlo Park, CA, 94025, USA) <br>
Privacy Policy / Opt-Out: http://instagram.com/about/legal/privacy/.
</p>
<p>
Twitter (Twitter Inc., 1355 Market Street, Suite 900, San Francisco, CA 94103, USA) <br>
Privacy Policy: https://twitter.com/de/privacy, <br>
Opt-Out: https://twitter.com/personalization, <br>
Privacy Shield:
https://www.privacyshield.gov/participant?id=a2zt000000000TORzAAO&status=Active.
</p>
<p>
Xing<br>
Privacy Policy: https://privacy.xing.com/en/privacy-policy
</p>
<p>
LinkedIn<br>
Privacy Policy: https://www.linkedin.com/legal/privacy-policy
</p>
<h4>Social media</h4>
<p>
Within our online offer, we make no representations or warranties of any kind based on our
legitimate interests (i.e. interest in the analysis, optimisation and economic operation of
our online offer within the meaning of Art. 6 para. 1 lit. f. DSGVO) content or service
offerings of third parties to incorporate their content and services, such as videos or
fonts (hereinafter uniformly referred to as "content").
</p>
<p>
This always presupposes that the third party providers of this content perceive the IP
address of the users, since without the IP address they could not send the content to their
browser. The IP address is therefore required for the display of this content. We make every
effort to use only those contents whose respective providers use the IP address only for the
delivery of the contents. Third-party providers may also use so-called pixel tags (invisible
graphics, also known as "web beacons") for statistical or marketing purposes. Pixel tags"
can be used to evaluate information such as visitor traffic on the pages of this website.
The pseudonymous information may also be stored in cookies on the user's device and may
include technical information about the browser and operating system, referring websites,
visiting time and other information about the use of our online offer, as well as be linked
to such information from other sources.
</p>
<h4>Youtube</h4>
<p>
We integrate the videos of the platform "YouTube" of the provider Google LLC, 1600
Amphitheatre Parkway, Mountain View, CA 94043, USA.
Privacy Policy: https://www.google.com/policies/privacy/,
Opt-Out: https://adssettings.google.com/authenticated.
</p>
<h4>Google fonts</h4>
<p>
We integrate the fonts ("Google Fonts") of the provider Google LLC, 1600 Amphitheatre
Parkway, Mountain View, CA 94043, USA.
Privacy Policy: https://www.google.com/policies/privacy,
Opt-Out: https://adssettings.google.com/authenticated.
</p>
<h4>Google Recaptcha</h4>
<p>
We integrate the function for the recognition of bots, e.g. for entries in online forms
("ReCaptcha") of the provider
Google LLC, 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA.
Privacy Policy: https://www.google.com/policies/privacy/
Opt-Out: https://adssettings.google.com/authenticated.
</p>
<h4>Google analytics</h4>
<p>
If you have given your consent, Google Analytics, a web analysis service of Google Inc.
"("Google"). The use includes the "Universal Analytics" operating mode. This makes it
possible to assign data, sessions and interactions across multiple devices to a pseudonymous
user ID and thus analyze a user's activities across devices. This data protection notice is
provided by www.intersoft-consulting.de.
</p>
<p>
Google Analytics uses "cookies", which are text files placed on your computer, to help the
website analyze how users use the site. The information generated by the cookie about your
use of this website is usually transferred to a Google server in the USA and stored there.
However, if IP anonymisation is activated on this website, Google will reduce your IP
address within Member States of the European Union or in other states party to the Agreement
on the European Economic Area beforehand. Only in exceptional cases will the full IP address
be transmitted to a Google server in the USA and shortened there. We would like to point out
that on this website Google Analytics has been extended to include IP anonymisation in order
to ensure anonymous collection of IP addresses (so-called IP masking). The IP address
transmitted by your browser in the context of Google Analytics is not merged with other
Google data. For more information on terms of use and data protection, please visit
https://www.google.com/analytics/terms/de.html or https://policies.google.com/?hl=en.
</p>
<p>
You can deactivate Google Analytics in your browser:
https://tools.google.com/dlpage/gaoptout/.
<h4>Amazon contact form</h4>
<p>
We use Amazon Simple Email Service to process requests through our contact form. By using
our contact forms you agree that we process and evaluate your data on the Amazon server.
Privacy policy: https://aws.amazon.com/de/privacy/
</p>
<h4>Surveys</h4>
<p>
We use Amazon contact form to process our survey form. By using our survey you agree, that
we process and evaluate your data on the Amazon server. In addition we evaluate your
anonymized survey data to generate statistics.
</p>
<h4>Mailchimp newsletter</h4>
<p>
Our newsletter function is hosted by the provider Mailchimp created by the Rocket Science
Group. If you subscribe to the newsletter, you agree that we store your data on the
Mailchimp platform.<br>
The Rocket Science Group, LLC, 675 Ponce de Leon Ave NE, Suite 5000, Atlanta, GA 30308
USA<br>
Privacy policy: https://mailchimp.com/legal/privacy/.
</p>
<h4>Pipedrive CRM</h4>
<p>
We also use Pipedrive to send newsletter and informations to our customers and interested
parties. If you subscribe to the newsletter or get in contact with us, you agree that we
store your data on the Pipedrive platform.<br>
Privacy policy: https://www.pipedrive.com/en/privacy
</p>
<h4>Wordpress Blog</h4>
<p>
We are hosting our blog with Wordpress. We store and manage user information from our
Wordpress blog on IONOS, especially comments and blog usage.<br>
Privacy policy: https://www.ionos.de/terms-gtc/terms-privacy
</p>
<h4>Github hosting</h4>
<p>
We are hosting our website on Github (GitHub Inc., 88 Colin P Kelly Jr St, San Francisco, CA
94107, United States).
Privacy policy: https://help.github.com/articles/github-privacy-statement/
</p>
<h4>Changes to our privacy regulations</h4>
<p>
We reserve the right to adapt this data protection declaration so that it always complies
with current legal requirements or to implement changes to our services in the data
protection declaration, e.g. when introducing new services. The new data protection
declaration will then apply for your next visit.
</p>
<p><b>Last update: May 25, 2018</b></p>
</div>
</div>
</div>
</section>
<section class="section section--bg-img jarallax" data-img-position="50% 60%" data-speed="0.3"
style="background-color: #1d2124">
<div class="container small-container-with-btn">
<div class="section-heading section-heading--white section-heading--center">
<h2 class="__title">Kontaktieren <span>Sie uns noch heute</span></h2>
<p>
Beginnen Sie mit Ihrer Digitalisierung und bringen Sie Ihr Produkt auf ein neues Level
</p>
<div class="col-12 col-sm-auto">
<div class="spacer py-4"></div>
<a data-toggle="modal" data-target="#contact-modal">
<button class="custom-btn custom-btn--medium custom-btn--style-2 medium" role="button"
type="submit">Jetzt Demo Vereinbaren
</button>
</a>
</div>
</div>
</div>
</section>
</main>
<footer class="footer footer--s3 footer--color-dark">
<div class="footer__line footer__line--first">
<div class="container">
<div class="row">
<!-- =================================================
===== Company links
================================================== -->
<div class="col col-sm-5 col-md-3 col-lg-3">
<div class="footer__item">
<h4 class="footer__item__title">Unternehmen</h4>
<nav class="footer__navigation">
<ul>
<li>
<a href="career"> Karriere</a>
</li>
<li>
<a data-toggle="modal" data-target="#contact-modal"> Kontakt</a>
</li>
</ul>
</nav>
</div>
</div>
<!-- =================================================
===== Resources links
================================================== -->
<div class="col col-sm-5 col-md-3 col-lg-3">
<div class="footer__item">
<h4 class="footer__item__title">Ressourcen</h4>
<nav class="footer__navigation">
<ul>
<li>
<a href="https://blog.oneiot.de" target="_blank">Blog</a>
</li>
<li>
<a href="https://docs.oneiot.de" target="_blank">Dokumentation</a>
</li>
<li>
<a href="https://github.com/1IoT" target="_blank">Open Source</a>
</li>
</ul>
</nav>
</div>
</div>
<div class="col col-sm-5 col-md-3 col-lg-3">
<div class="footer__item">
</div>
</div>
<div class="col col-sm-5 col-md-3 col-lg-3">
<div class="footer__item">
</div>
</div>
</div>
</div>
</div>
<!-- =================================================
===== Bottom bar on footer
================================================== -->
<div class="footer__line footer__line--second">
<div class="container">
<div class="row justify-content-center align-items-md-center">
<!-- =================================================
===== Copyright
================================================== -->
<div class="col-auto col-md-12 col-lg-6">
<div class="footer__item">
<p>
<span class="__copy">
<a href="terms">Impressum</a> |
<a href="privacy">Datenschutz</a> |
<a href="agb">AGB</a>
<br>
<span style="font-family:monospace !important; font-size:14px">Copyrights 2021 © OneIoT UG (haftungsbeschränkt)</span>
</span>
</p>
</div>
</div>
<!-- =================================================
===== Social links
================================================== -->
<div class="col-auto col-md-12 col-lg-6">
<div class="footer__item">
<div class="s-btns s-btns--md s-btns--light s-btns--rounded">
<ul class="d-flex flex-row flex-wrap align-items-center justify-content-md-end">
<li><a class="i" target="_blank" href="https://www.linkedin.com/company/18496129"><i
class="fontello-linkedin"></i></a></li>
<li><a class="y" target="_blank"
href="https://www.youtube.com/channel/UCbzmC4PVWyU54nuHTLj3qmw"><i
class="fontello-youtube-play"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
</div>
<div class="modal fade in" id="contact-modal" tabindex="-1" role="dialog" aria-hidden="true" data-keyboard="false" data-backdrop="static">
<div class="modal-dialog container" role="document">
<div class="modal-content">
<div class="modal-header">
<!-- =================================================
===== Title
================================================== -->
<div class="section-heading">
<h2 class="__title">Kontaktieren <span>Sie uns</span></h2>
</div>
<!-- =================================================
===== Close
================================================== -->
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<!-- =================================================
===== Contact form
================================================== -->
<div class="col-12 col-xl-6">
<p>
Wir stehen Ihnen für all Ihre Fragen zur Verfügung. Unsere Experten beraten Sie gerne
</p>