-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUVX_Privacy.html
More file actions
88 lines (77 loc) · 3.01 KB
/
UVX_Privacy.html
File metadata and controls
88 lines (77 loc) · 3.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Privacy Policy for the Cash Guard app, used for detecting counterfeit bills.">
<title>Privacy Policy - Cash Guard</title>
<style>
/* Ensure full height and proper scrolling */
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: auto;
font-family: Arial, sans-serif;
background-color: #f8f9fa;
}
/* Content styling */
.content {
padding: 20px;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
background: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
/* Header styling */
h1 {
text-align: center;
color: #333333;
margin-bottom: 20px;
}
/* Paragraph styling */
p {
color: #555555;
margin-bottom: 15px;
}
/* Section headers */
h2 {
color: #444444;
margin-top: 20px;
}
/* Footer section */
.footer {
text-align: center;
margin-top: 20px;
font-size: 0.9em;
color: #888888;
}
</style>
</head>
<body>
<div class="content">
<h1>Privacy Policy</h1>
<p>At Cash Guard, your privacy is a top priority. This Privacy Policy outlines how we collect, use, and protect your personal information when you use our app, developed for detecting counterfeit bills.</p>
<h2>Information We Collect</h2>
<p>We may collect the following types of information:</p>
<ul>
<li><strong>Camera Access:</strong> The app may request access to your device's camera to perform its core functionality (help you to detect counterfeit bills). Images or videos are not stored on our servers</li>
</ul>
<h2>Sharing Your Information</h2>
<p>We do not collect, sell or rent your personal information to third parties.</p>
<h2>Third-Party Services</h2>
<p>Cash Guard may integrate third-party services or websites (such as analytics or advertising providers). These services have their own privacy policies, and we encourage you to review them.</p>
<h2>Changes to This Privacy Policy</h2>
<p>We may update this Privacy Policy from time to time. Changes will be effective when posted on this page, and the "Effective Date" will be updated accordingly.</p>
<h2>Contact Us</h2>
<p>If you have any questions or concerns about this Privacy Policy or your personal data, please contact us at:</p>
<p>Email: <a href="mailto:sarma.codes@gmail.com">sarma.codes@gmail.com</a></p>
</div>
<div class="footer">
© 2025 Cash Guard. All rights reserved.
</div>
</body>
</html>