-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlegal_notice_logout.html
147 lines (139 loc) · 5.81 KB
/
legal_notice_logout.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Join - Legal Notice</title>
<link
rel="shortcut icon"
href="./assets/img/favicon_light.png"
type="image/x-icon"
/>
<script src="./script.js"></script>
<script src="./js/header.js"></script>
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./assets/css/legal_notice.css" />
<link rel="stylesheet" href="./assets/templates/header/header_logout.css" />
<link
rel="stylesheet"
href="./assets/templates/sidebar/sidebar_logout.css"
/>
</head>
<body onload="init()">
<main>
<section class="side_bar_container">
<div
w3-include-html="./assets/templates/sidebar/sidebar_logout.html"
></div>
</section>
<section>
<div
w3-include-html="./assets/templates/header/header_logout.html"
></div>
<section class="container">
<div class="container_head">
<h1>Legal notice</h1>
<a href="#" onclick="history.back(); return false;">
<img src="./assets/img/arrow_back.png" alt="Seite zurück" />
</a>
</div>
<h2>Imprint</h2>
<ul>
<li>
<p>
Daniel Sinteck <br />
Florian Kube <br />
Roman Kinzel
</p>
</li>
<li>
<p>Ordenskamp 42</p>
</li>
<li>
<p>21717, Fredenbeck</p>
</li>
</ul>
<br />
<h3>Exploring the Board Email:</h3>
<p>[Email]</p>
<br />
<h3>Acceptance of terms</h3>
<p>
By accessing and using
<span class="font_color">Join</span> (Product), you acknowledge and
agree to the following terms and conditions, and any policies,
guidelines, or amendments thereto that may be presented to you from
time to time. We, the listed students, may update or change the
terms and conditions from time to time without notice.
</p>
<h3>Scope and ownership of the product</h3>
<p>
<span class="font_color">Join</span> has been developed as part of a
student group project in a web development bootcamp at the
<span class="font_color">Developer Akademie GmbH</span>. It has an
educational purpose and is not intended for extensive personal &
business usage. As such, we cannot guarantee consistent
availability, reliability, accuracy, or any other aspect of quality
regarding this Product.
</p>
<p>
The design of <span class="font_color">Join</span> is owned by the
<span class="font_color">Developer Akademie GmbH</span>.
Unauthorized use, reproduction, modification, distribution, or
replication of the design is strictly prohibited.
</p>
<h3>Proprietary rights</h3>
<p>
Aside from the design owned by
<span class="font_color">Developer Akademie GmbH</span>, we, the
listed students, retain all proprietary rights in
<span class="font_color">Join</span>, including any associated
copyrighted material, trademarks, and other proprietary information.
</p>
<h3>Use of the product</h3>
<p>
<span class="font_color">Join</span> is intended to be used for
lawful purposes only, in accordance with all applicable laws and
regulations. Any use of <span class="font_color">Join</span> for
illegal activities, or to harass, harm, threaten, or intimidate
another person, is strictly prohibited. You are solely responsible
for your interactions with other users of
<span class="font_color">Join</span>.
</p>
<h3>Disclaimer of warranties and limitation of liability</h3>
<p>
<span class="font_color">Join</span> is provided "as is" without
warranty of any kind, whether express or implied, including but not
limited to the implied warranties of merchantability, fitness for a
particular purpose, and non-infringement. In no event will we, the
listed students, or the
<span class="font_color">Developer Akademie</span>, be liable for
any direct, indirect, incidental, special, consequential or
exemplary damages, including but not limited to, damages for loss of
profits, goodwill, use, data, or other intangible losses, even if we
have been advised of the possibility of such damages, arising out of
or in connection with the use or performance of
<span class="font_color">Join</span>.
</p>
<h3>Indemnity</h3>
<p>
You agree to indemnify, defend and hold harmless us, the listed
students, the <span class="font_color">Developer Akademie</span>,
and our affiliates, partners, officers, directors, agents, and
employees, from and against any claim, demand, loss, damage, cost,
or liability (including reasonable legal fees) arising out of or
relating to your use of <span class="font_color">Join</span> and/or
your breach of this Legal Notice.
</p>
<p>
For any questions or notices, please contact us at
<a href="mailto:[email protected]"
>.
</p>
<p>Date: July 26, 2023</p>
</section>
</section>
</main>
</body>
</html>