-
Notifications
You must be signed in to change notification settings - Fork 4
/
TermsOfUse.html
406 lines (336 loc) · 16.7 KB
/
TermsOfUse.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="enviroCar website">
<meta name="author" content="52north GmbH">
<link rel="icon" href="assets/app_logo.png">
<title>enviroCar.org</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="css/material-icons.css" rel="stylesheet">
<link href="css/lato-font.css" rel="stylesheet" type="text/css">
<link href="css/open-sans-font.css" rel="stylesheet" type="text/css">
<!--This stylesheet is for the footer icons-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<link href="css/bootstrap.copy.min.css" rel="stylesheet">
<script src="js/jquery.copy.min.js"></script>
<script src="js/bootstrap.copy.min.js"></script>
<script src="js/i18next.copy.min.js"></script>
<script src="js/jquery-i18next.min.js"></script>
<li><a class="footerLink" onclick="openSubpage('TermsOfUse.html')">ft.TermsOfUse</a></li>
<script src="js/i18nextify.min.js"></script>
<script>
window.i18nextify
.init({
backend: {
loadPath: 'locales/{{lng}}/translation.json'
}});
</script>
</head>
<body id="page-top" style="display: none; background-color: #f3f3f3;">
<!-- Navigation Bar -->
<nav class="navbar fixed-top navbar-dark bg-primary navbar-expand-lg navbar-expand-md" style="position: fixed; top: 0; border-bottom: solid 1px #0065A0;" id="mainNav">
<a style="padding: 0;" class="navbar-brand js-scroll-trigger" href="#page-top">
<img style="height: 80%; width: auto;" alt="enviroCar logo" src="assets/logo_white.png" onclick="openSubpage('index.html')">
</a>
<button class="navbar-toggler ml-auto navbar-dark" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav mr-auto navbar-right">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" onclick="openSubpage('index.html')">nav.home</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" onclick="openSubpage('collect.html')">nav.collect</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" onclick="openSubpage('share.html')">nav.share</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" onclick="openSubpage('analysis.html')">nav.analysis</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" onclick="openSubpage('resources.html')">nav.resources</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="https://envirocar.org/app/">
<img src="assets/login_white.png"/>my enviroCar</a>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">nav.language</a>
<ul class="dropdown-menu">
<li><a class="lngOption" onclick="changeLanguage('en')">English</a></li>
<li><a class="lngOption" onclick="changeLanguage('de')">Deutsch</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<div class="placeholder" style="height: 50px;"></div>
<section id="aboutenviroCar" class="sectionAboutenviroCar" style="background-color: #fff; padding-top: 48px;">
<!-- General Terms of Use -->
<div class="container-fluid col-12 nomargin">
<h1 class="section-heading">touTitle<br><br></h1>
<div class="clearfix"></div>
<div class="section-lead nomargin">
touPara1<br><br>
touPara2<br><br>
touPara3
<br><br><br>
</div>
</div>
<!-- Liability and Warranties -->
<div class="container-fluid col-12 nomargin">
<h2 class="section-heading-sm">touSecTitle1<br><br></h2>
<div class="clearfix"></div>
<div class="section-lead nomargin">
touPara4<br><br>
touPara5<br><br>
touPara6<br><br>
touPara7
<br><br><br>
</div>
</div>
<!-- Datenschutz -->
<div class="container-fluid col-12 nomargin">
<h2 class="section-heading-sm">touTitleDataP<br><br></h2>
<div class="clearfix"></div>
<div class="section-lead nomargin">
touTitleDataPP1
<a href="conditions.html">LinkDatenschutzerklärung</a>
<br><br><br>
</div>
</div>
<!-- Kontakt -->
<div class="container-fluid col-12 nomargin">
<h2 class="section-heading-sm">touTitleKontakt<br><br></h2>
<div class="clearfix"></div>
<div class="section-lead nomargin">
touTitleKontaktP1 <a href="mailto:[email protected]?Subject=" target="_top">[email protected]</a>.<br><br>
touTitleKontaktP2
<br><br><br>
</div>
</div>
<!-- Besondere Nutzungsbedingungen -->
<div class="container-fluid col-12 nomargin">
<h1 id="SToU" class="section-heading">touTitle2<br><br></h1>
<div class="clearfix"></div>
<div class="section-lead nomargin">
touPara8<br><br>
touPara9<br><br>
touPara10<br><br>
touPara11<br><br>
touAufz1<br>
<ul>
<li>touAufz1.1</li>
<li>touAufz1.2</li>
<li>touAufz1.3</li>
</ul>
<br>
touPara12<br><br>
touPara13<br><br>
touPara14<br><br>
touPara15.1
<a href="mailto:[email protected]?Subject=" target="_top">[email protected]</a>
touPara15.2<br><br>
Aufz2.1<br>
<ol type="a">
<li>Aufz2a</li>
<li>Aufz2b</li>
</ol>
Aufz2.2<br><br>
touPara16
<br><br><br>
</div>
<!--</div>-->
<!--Setting up your personal Account-->
<h2 class="section-heading-sm">touSecTitle2<br><br></h2>
<div class="clearfix"></div>
<div class="section-lead nomargin">
touPara17<br><br>
touPara18<br><br>
touPara19<br><br>
touPara20<br><br>
<!--Pflichtangaben-->
Aufz3
<ul>
<li>Aufz3.1</li>
<li>Aufz3.2</li>
<li>Aufz3.3</li>
</ul>
<br>
<!--Optionale Angaben-->
Aufz4
<ul>
<li>Aufz4.1</li>
<li>Aufz4.2</li>
<li>Aufz4.3</li>
<li>Aufz4.4</li>
<li>Aufz4.5</li>
</ul>
<br>
touPara21
<br><br><br>
</div>
<!--Recording and Publication of your Driving data-->
<h2 class="section-heading-sm">touSecTitle3<br><br></h2>
<div class="clearfix"></div>
<div class="section-lead nomargin">
<!--Erfassung von Messfahrten mit Hilfe der Smartphone App-->
<h3>touSecTitle3suba</h3>
touPara17<br><br>
touPara18<br><br>
touPara19<br><br>
touPara20<br><br>
Aufz5
<br><br>
<ul>
<li>Aufz5.1</li>
<li>Aufz5.2</li>
<li>Aufz5.3</li>
<li>Aufz5.4</li>
<li>Aufz5.5</li>
</ul>
touPara22
<br><br><br>
<!--Publikation der Daten mir Hilfe der Smartphone App und Nutzung der Daten auf dem enviroCar Server-->
<h3>touSecTitle3subb</h3>
touPara23
<a href="https://www.opendatacommons.org/licenses/odbl/summary/index.html" target="_blank">https://www.opendatacommons.org/licenses/odbl/summary/index.html</a>
<br><br>
touPara24<br><br>
touPara25
<br><br><br>
<!--Nutzung der publizierten Daten durch Dritte-->
<h3>touSecTitle3subc</h3>
touPara26<br><br>
touPara27
<a href="https://www.opendatacommons.org/licenses/odbl/1.0/" target="_blank">https://www.opendatacommons.org/licenses/odbl/1.0/</a>
<br><br>
touPara28<br><br><br>
</div>
<!--Deleting your account-->
<h2 id="tos-account-deletion" class="section-heading-sm">touSecTitle4<br><br></h2>
<div class="clearfix"></div>
<div class="section-lead nomargin">
touPara29<br><br>
touPara30<br><br><br>
</div>
<!--Uploading Driving Data From external Systems-->
<h2 class="section-heading-sm">touSecTitle42</h2>
<div class="clearfix"></div>
<div class="section-lead nomargin">
touPara49<br><br>
touPara50<br><br>
touPara51
<br>
<ol type="a">
<li>touPara511</li>
<li>touPara512</li>
<li>touPara513</li>
<br><br><br>
</ol>
</div>
<!--Warranties and Liabilities-->
<h2 class="section-heading-sm">touSecTitle5<br><br></h2>
<div class="clearfix"></div>
<div class="section-lead nomargin">
touPara31<br><br>
touPara32<br><br>
touPara33<br><br>
touPara34<br><br>
touPara35<br><br>
touPara36<br><br>
touPara37<br><br>
touPara38<br><br>
touPara39<br><br>
touPara40<br><br>
touPara41<br><br>
touPara42<br><br>
touPara43<br><br><br>
</div>
<!--Other Provisions-->
<h2 class="section-heading-sm">touSecTitle6<br><br></h2>
<div class="clearfix"></div>
<div class="section-lead nomargin">
touPara44<br><br>
touPara45<br><br>
touPara46<br><br>
touPara47S
<a href="mailto:[email protected]?Subject=" target="_top">[email protected]</a>
<br><br><br>
</div>
<!--Last Update-->
<h2 class="section-heading-sm">touSecTitle7<br><br></h2>
<div class="clearfix"></div>
<div class="section-lead nomargin">
touPara48
<br><br><br>
</div>
</div>
</section>
<!--Footer-->
<footer class="bg-primary">
<div class="row footerdiv">
<!--leerer Platz links im Footer-->
<div class="spaceholder col-lg-2 col-md-2 hidden-sm hidden-xs"></div>
<!--1. column-->
<div class="footer-item col-xs-3 col-sm-3 col-md-2 col-lg-2" >
<!-- <h3>ft.background</h3> -->
<ul style="font-size: 2rem;">
<li><a class="footerLink"onclick="openSubpage('about.html')">ft.about</a></li>
</ul>
</div>
<!--2. column-->
<div class="footer-item col-xs-3 col-sm-3 col-md-2 col-lg-2" >
<ul style="font-size: 2rem;">
<li><a class="footerLink" onclick="openSubpage('faq.html')">ft.faq</a></li>
<li><a class="footerLink" href="https://blog.52north.org/category/envirocar-2/">Blog</a></li>
</ul>
</div>
<!--3. column-->
<div class="footer-item col-xs-3 col-sm-3 col-md-2 col-lg-2" >
<ul style="font-size: 2rem;">
<li><a class="footerLink" onclick="openSubpage('imprint.html')">ft.imprint</a></li>
<li><a class="footerLink" onclick="openSubpage('conditions.html')">ft.terms</a></li>
<li><a class="footerLink" onclick="openSubpage('TermsOfUse.html')">ft.TermsOfUse</a></li>
</ul>
</div>
<!--4. column: Icons-->
<div class="footer-item col-xs-3 col-sm-3 col-md-2 col-lg-2">
<ul>
<li><a href="https://twitter.com/enviroCar_org"><i class="fa fa-twitter fa-2x " ></i></a></li>
<li><a href="https://www.facebook.com/enviroCar/"><i class="fa fa-facebook fa-2x"></i></a></li>
<li><a href="https://github.com/enviroCar"><i class="fa fa-github fa-2x"></i></a></li>
</ul>
</div>
<!--leerer Platz rechts im Footer-->
<div class="spaceholder col-lg-2 col-md-2 hidden-sm hidden-xs"></div>
<!--Copyright Section-->
<div class="footer-copyright text-center py-3">© 2021 Copyright by 52°North Spatial Information Research GmbH. All Rights Reserved.
</div>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<!--<script src="js/jquery.min.js"></script>-->
<script src="js/jquery.easing.1.3.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/scrolling-nav.js"></script>
<script src="js/language-url.js"></script>
<script>
$(function () {
var includes = $('[data-include]');
jQuery.each(includes, function () {
var file = '' + $(this).data('include') + '.html';
$(this).load(file);
});
});
</script>
</body>
</html>