-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (105 loc) · 4.11 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support - GlideU</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
header {
background-color: #007bff;
color: #fff;
padding: 1rem 0;
text-align: center;
}
main {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
background: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1, h2 {
color: #007bff;
}
p {
margin: 1rem 0;
}
ul {
list-style: none;
padding: 0;
}
ul li {
background: #f1f1f1;
margin: 0.5rem 0;
padding: 0.5rem 1rem;
border-radius: 5px;
}
footer {
text-align: center;
margin-top: 2rem;
padding: 1rem 0;
background-color: #007bff;
color: #fff;
}
footer a {
color: #fff;
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Support - GlideU</h1>
<p>Your go-to resource for app assistance</p>
</header>
<main>
<h2>GlideU Support</h2>
<p>Welcome to GlideU, a taxi booking application developed by GOGIAL DEV. Your privacy is critically important to us. By using our app, you agree to the collection and use of information in accordance with our Privacy Policy.</p>
<h3>Information We Collect</h3>
<ul>
<li><strong>Personal Data:</strong> Name, email, phone number, profile photo, payment information, and location data.</li>
<li><strong>Non-Personal Data:</strong> Device type, operating system, unique device identifiers, log data, and usage data.</li>
</ul>
<h3>How We Use Your Information</h3>
<ul>
<li>To provide and maintain the app.</li>
<li>To facilitate bookings and manage rides.</li>
<li>To process transactions and send booking confirmations.</li>
<li>To improve and personalize the app experience.</li>
<li>To communicate with you for support and customer service.</li>
<li>To monitor and analyze usage trends.</li>
<li>To comply with legal obligations and protect our rights.</li>
</ul>
<h3>Sharing Your Information</h3>
<p>We may share your information with service providers, during business transfers, or to comply with legal requirements.</p>
<h3>Data Security</h3>
<p>We implement various measures to secure your personal information. However, no system is completely secure, and we encourage caution when sharing sensitive data.</p>
<h3>Your Data Protection Rights</h3>
<ul>
<li>The right to access your personal data.</li>
<li>The right to correct inaccurate information.</li>
<li>The right to request data erasure under certain conditions.</li>
<li>The right to restrict data processing under certain conditions.</li>
<li>The right to data portability.</li>
</ul>
<h3>Changes to This Privacy Policy</h3>
<p>We may update this Privacy Policy from time to time. Any changes will be posted on this page, so please review it periodically.</p>
<h3>Contact Us</h3>
<p>If you have any questions or need assistance, contact us:</p>
<p>Email: <a href="mailto:sulehrifiaz@gmail.com">sulehrifiaz@gmail.com</a></p>
<p>Phone: <a href="tel:+923021794031">+92 302 1794031</a></p>
</main>
<footer>
<p>© 2024 GlideU. All rights reserved. | <a href="https://rideglideadmin.in/privacy_policies">Terms of Service</a></p>
</footer>
</body>
</html>