forked from lasthopeglobal/lasthopeweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
350 lines (304 loc) · 18.8 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
<!DOCTYPE html>
<html lang="en">
<!--divinectorweb.com-->
<head>
<meta charset="UTF-8">
<title>Privacy Policy</title>
<link href="https://fonts.googleapis.com/css2?family=Teko&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" rel="stylesheet">
<!-- <link href="style.css" rel="stylesheet"> -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="../assets/icons/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="../assets/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../assets/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../assets/icons/favicon-16x16.png">
<!-- styles import -->
<link rel="stylesheet" href="../css/style.css">
<!-- materialize icons, fontawesome -->
<link type="text/css" href="../css/materialize.min.css" rel="stylesheet">
<link type="text/css" href="../css/fontawesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="../css/all.min.css">
<!-- import all the required fonts files -->
<!-- not yet done all imports -->
<!-- icon fonts import -->
<link rel="stylesheet" href="../css/material-icons.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
}
.header {
text-align: center;
font-family: 'Teko', sans-serif;
font-size: 50px;
}
</style>
</head>
<body>
<!-- Scroll To Top Button With Scroll Progress -->
<div id="progress">
<span id="progress-value">
<i class="material-icons" title="return to top">arrow_upward</i>
</span>
<!-- <span id="progress-value">🠕</span> -->
</div>
<div class="navbar-fixed">
<nav class="yellow darken-2">
<div class="nav-wrapper">
<a href="/" class="brand-logo black-text">
<!-- Last Hope Church -->
<img src="../assets/navbar_logo/Frame trasnparent 2.png" alt="brand-logo" id="logo" class="lhc-logo">
</a>
<a href="#" data-target="mobile-demo" class="sidenav-trigger"><i class="material-icons">menu</i></a>
<ul id="nav" class="right hide-on-med-and-down">
<li><a href="/" title="Home" class="black-text">Home</a></li>
<li><a href="../pages/aboutus.html" class="black-text">About Us</a></li>
<li><a href="../pages/ministeries.html" class="black-text">Ministries</a></li>
<li><a href="../pages/event.html" class="black-text">Events</a></li>
<li><a href="../pages/prayer.html" class="black-text">Prayer</a></li>
<li><a href="../pages/donate.html" class="black-text">Donate</a></li>
<li><a href="#footer" class="black-text">Visit Us</a></li>
<!-- dropdown-trigger -->
<li>
<a href="#" class="dropdown-trigger" data-target="more-options">
<i class="material-icons black-text right">more_vert</i>
</a>
</li>
<!-- darkmode button -->
<li>
<a href="#" class="btn btn-wages indigo"
onclick="localStorage.setItem('mode', (localStorage.getItem('mode') || 'dark') === 'dark' ? 'light' : 'dark'); localStorage.getItem('mode') === 'dark' ? document.querySelector('body').classList.add('dark') : document.querySelector('body').classList.remove('dark')"
title="Dark/light">Dark mode
<i class="material-icons right">dark_mode</i>
</a>
</li>
</ul>
<!-- dropdown menus -->
<ul id="more-options" class="dropdown-content">
<li><a href="../pages/disclamer.html" class="blue-text">Disclamer</a></li>
<li><a href="#" title="Current page" class="blue-text"><b>Privacy Policy</b></a></li>
<li><a href="../pages/tnc.html" class="blue-text">Terms & Conditions</a></li>
</ul>
</div>
</nav>
</div>
<!-- Here is the Mobile side navbar -->
<ul class="sidenav" id="mobile-demo">
<!-- darkmode button -->
<li>
<a href="#" class="btn btn-wages indigo"
onclick="localStorage.setItem('mode', (localStorage.getItem('mode') || 'dark') === 'dark' ? 'light' : 'dark'); localStorage.getItem('mode') === 'dark' ? document.querySelector('body').classList.add('dark') : document.querySelector('body').classList.remove('dark')"
title="Dark/light">Dark mode
<i class="material-icons right">dark_mode</i>
</a>
</li>
<li><a href="/" title="Home">Home</a></li>
<li><a href="../pages/aboutus.html">About Us</a></li>
<li><a href="../pages/ministeries.html">Ministries</a></li>
<li><a href="../pages/event.html">Events</a></li>
<li><a href="../pages/prayer.html">Prayer</a></li>
<li><a href="../pages/donate.html">Support</a></li>
<li><a href="#footer">Visit Us</a></li>
<li><a href="../pages/disclamer.html">Disclamer</a></li>
<li><a href="#" title="Current page"><b>Privacy Policy</b></a></li>
<li><a href="../pages/tnc.html">Terms & Conditions</a></li>
</ul>
<section class="container">
<h2>Privacy Policy</h2>
<p>At Lasthopechurch, accessible from lasthopechurch.org, one of our main priorities is the privacy of our
visitors. This Privacy Policy document contains types of information that is collected and recorded by
Lasthopechurch and how we use it.</p>
<p>If you have additional questions or require more information about our Privacy Policy, do not hesitate to
contact us.</p>
<p>This Privacy Policy applies only to our online activities and is valid for visitors to our website with
regards to the information that they shared and/or collect in Lasthopechurch. This policy is not applicable
to any information collected offline or via channels other than this website.</p>
<h3>Consent</h3>
<p>By using our website, you hereby consent to our Privacy Policy and agree to its terms.</p>
<h3>Information we collect</h3>
<p>The personal information that you are asked to provide, and the reasons why you are asked to provide it, will
be made clear to you at the point we ask you to provide your personal information.</p>
<p>If you contact us directly, we may receive additional information about you such as your name, email address,
phone number, the contents of the message and/or attachments you may send us, and any other information you
may choose to provide.</p>
<p>When you register for an Account, we may ask for your contact information, including items such as name,
company name, address, email address, and telephone number.</p>
<h3>How we use your information</h3>
<p>We use the information we collect in various ways, including to:</p>
<ul>
<li>Provide, operate, and maintain our website</li>
<li>Improve, personalize, and expand our website</li>
<li>Understand and analyze how you use our website</li>
<li>Develop new products, services, features, and functionality</li>
<li>Communicate with you, either directly or through one of our partners, including for customer service, to
provide you with updates and other information relating to the website, and for marketing and
promotional purposes</li>
<li>Send you emails</li>
<li>Find and prevent fraud</li>
</ul>
<h3>Log Files</h3>
<p>Lasthopechurch follows a standard procedure of using log files. These files log visitors when they visit
websites. All hosting companies do this and a part of hosting services' analytics. The information collected
by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date
and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any
information that is personally identifiable. The purpose of the information is for analyzing trends,
administering the site, tracking users' movement on the website, and gathering demographic information.</p>
<h3>Advertising Partners Privacy Policies</h3>
<P>You may consult this list to find the Privacy Policy for each of the advertising partners of Lasthopechurch.
</p>
<p>Third-party ad servers or ad networks uses technologies like cookies, JavaScript, or Web Beacons that are
used in their respective advertisements and links that appear on Lasthopechurch, which are sent directly to
users' browser. They automatically receive your IP address when this occurs. These technologies are used to
measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that
you see on websites that you visit.</p>
<p>Note that Lasthopechurch has no access to or control over these cookies that are used by third-party
advertisers.</p>
<h3>Third Party Privacy Policies</h3>
<p>Lasthopechurch's Privacy Policy does not apply to other advertisers or websites. Thus, we are advising you to
consult the respective Privacy Policies of these third-party ad servers for more detailed information. It
may include their practices and instructions about how to opt-out of certain options. </p>
<p>You can choose to disable cookies through your individual browser options. To know more detailed information
about cookie management with specific web browsers, it can be found at the browsers' respective websites.
</p>
<h3>CCPA Privacy Rights (Do Not Sell My Personal Information)</h3>
<p>Under the CCPA, among other rights, California consumers have the right to:</p>
<p>Request that a business that collects a consumer's personal data disclose the categories and specific pieces
of personal data that a business has collected about consumers.</p>
<p>Request that a business delete any personal data about the consumer that a business has collected.</p>
<p>Request that a business that sells a consumer's personal data, not sell the consumer's personal data.</p>
<p>If you make a request, we have one month to respond to you. If you would like to exercise any of these
rights, please contact us.</p>
<h3>GDPR Data Protection Rights</h3>
<p>We would like to make sure you are fully aware of all of your data protection rights. Every user is entitled
to the following:</p>
<p>The right to access - You have the right to request copies of your personal data. We may charge you a small
fee for this service.</p>
<p>The right to rectification – You have the right to request that we correct any information you believe is
inaccurate. You also have the right to request that we complete the information you believe is incomplete.
</p>
<p>The right to erasure – You have the right to request that we erase your personal data, under certain
conditions.</p>
<p>The right to restrict processing – You have the right to request that we restrict the processing of your
personal data, under certain conditions.</p>
<p>The right to object to processing – You have the right to object to our processing of your personal data,
under certain conditions.</p>
<p>The right to data portability – You have the right to request that we transfer the data that we have
collected to another organization, or directly to you, under certain conditions.</p>
<p>If you make a request, we have one month to respond to you. If you would like to exercise any of these
rights, please contact us.</p>
<h3>Children's Information</h3>
<p>Another part of our priority is adding protection for children while using the internet. We encourage parents
and guardians to observe, participate in, and/or monitor and guide their online activity.</p>
<p>Lasthopechurch does not knowingly collect any Personal Identifiable Information from children under the age
of 13. If you think that your child provided this kind of information on our website, we strongly encourage
you to contact us immediately and we will do our best efforts to promptly remove such information from our
records.</p>
</section>
<!-- subscribe to your email -->
<!-- <div class="blue lighten-5">
<section class="container">
<div class="row">
<div class="col s12 m3">
<h6 class=" left-align"
style="text-transform: uppercase; font-weight: bold; letter-spacing: 5px; font-size: larger;">
Subscribe</h6>
<p class=" left-align"
style="text-transform: capitalize; font-weight: 300; font-style: italic; font-size: 16px; letter-spacing: 2px">
to our newsletter</p>
</div>
<div class="input-field col s12 m5 ">
<i class="material-icons prefix">email</i>
<input id="icon_prefix" type="email" class="validate">
<label for="icon_prefix">Your Vaild Email</label>
</div>
<div class="col s12 m2">
<div class="right-align center" style="padding: 2rem;">
<a href="#" class="btn btn-medium waves indigo lighten-2 black-text">Subscribe</a>
</div>
</div>
</div>
</section>
</div> -->
<!-- footer starts here -->
<footer class="page-footer yellow darken-2">
<div class="container" id="footer">
<div class="row">
<div class="col l3 s12">
<!-- <h3 class="black-text">About Church</h3> -->
<h5 class="black-text">About the Church</h5>
<p class="black-text text-lighten-1">
<!-- Last Hope Vision is to bring Hope for the Hopeless humanity -->
Last Hope is a contemporary church led by Pastor Noel and Marceline Lewis. Our vision and
mission is to establish God's kingdom across the earth.
</p>
</div>
<!-- <div class="col l4 offset-l2 s12"> -->
<div class="col l3 s12">
<h5 class="black-text">Quick Links</h5>
<ul>
<li><a class="blue-text" href="/newuser.html">New Comer Form (New User)</a></li>
<hr>
<li><a class="blue-text" href="/yj/index.html">Christmas 2022</a></li>
<hr>
<li><a class="blue-text" href="/pages/testimonyform.html">Write Testimony</a></li>
<hr>
<li><a class="blue-text" href="/pages/aboutus.html">Our Vision & Minisions</a></li>
<hr>
</ul>
</div>
<div class="col l3 s12 black-text">
<h5>Reach Us</h5>
<p>Address: Shop Number C1 Bappa Sitaram Market, opposite SBI, Moregaon Talao, Nalasopara East,
Maharashtra 401209</p>
</div>
<div class="col l3 s12">
<h5 class="black-text">Connect with us</h5>
<ul style="display:flex; justify-content: left; align-items: center;">
<!-- use flaticon for this -->
<li><a class="btn red btn-floating" href="https://www.youtube.com/c/LASTHOPEGLOBAL"
target="_blank">
<i class="fab fa-youtube"></i>
</a></li>
<li><a class="btn pink btn-floating" href="https://www.instagram.com/lasthopeglobal/"
target="_blank">
<i class="fab fa-instagram"></i></a>
</li>
<li><a class="btn blue btn-floating" href="https://www.facebook.com/lasthope.church.5/"
target="_blank">
<i class="fab fa-facebook"></i></a>
</li>
</ul>
</div>
<div class="col l3 s12">
<h5 class="black-text">Contact us</h5>
<ul class="black-text">
<li>Call us :+910123456789</li>
<a href="mailto:[email protected]"><u>Email:[email protected]</u></a>
</ul>
</div>
</div>
</div>
<div class="footer-copyright yellow darken-3">
<div class="container center black-text">
Copyright © 2023 <a href="#" class="purple-text"><u>Last Hope Church</u></a>
Created with <i class="material-icons red-text" style="font-size:15px ;">favorite</i> by <a
class="purple-text" href="https://pratapparui.me/" target="_blank" rel="dofollow">Mr Parui
Web</a>
</div>
</div>
</footer>
<!-- footer ends here -->
<!-- jquery import -->
<script src="../js/jquery-3.4.1.min.js"></script>
<!-- materialize js import -->
<script src="../js/materialize.min.js"></script>
<!-- custom js files -->
<script src="../js/script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js">
</script>
</body>
</html>