You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
332 lines
10 KiB
332 lines
10 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Privacy Policy - MyQrCode</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
|
|
line-height: 1.7;
|
|
color: #2d3748;
|
|
background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 60px;
|
|
padding: 40px 0;
|
|
border-bottom: 1px solid #e2e8f0;
|
|
}
|
|
|
|
.header h1 {
|
|
font-size: 3rem;
|
|
font-weight: 700;
|
|
color: #1a202c;
|
|
margin-bottom: 16px;
|
|
letter-spacing: -0.025em;
|
|
}
|
|
|
|
.header .date {
|
|
font-size: 1.1rem;
|
|
color: #718096;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.content {
|
|
background: white;
|
|
border-radius: 20px;
|
|
padding: 60px;
|
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
h2 {
|
|
color: #1a202c;
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
margin: 40px 0 20px 0;
|
|
padding-bottom: 12px;
|
|
border-bottom: 2px solid #e2e8f0;
|
|
position: relative;
|
|
}
|
|
|
|
h2:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
h2::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -2px;
|
|
left: 0;
|
|
width: 60px;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, #667eea, #764ba2);
|
|
}
|
|
|
|
h3 {
|
|
color: #2d3748;
|
|
font-size: 1.2rem;
|
|
font-weight: 600;
|
|
margin: 24px 0 16px 0;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 20px;
|
|
color: #4a5568;
|
|
font-size: 1rem;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
ul {
|
|
margin: 20px 0;
|
|
padding-left: 24px;
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 12px;
|
|
color: #4a5568;
|
|
font-size: 1rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.highlight {
|
|
background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
|
|
border-left: 4px solid #667eea;
|
|
padding: 24px;
|
|
margin: 32px 0;
|
|
border-radius: 12px;
|
|
border: 1px solid #e2e8f0;
|
|
}
|
|
|
|
.highlight p {
|
|
margin-bottom: 0;
|
|
color: #2d3748;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.contact-box {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 32px;
|
|
border-radius: 16px;
|
|
margin: 40px 0;
|
|
box-shadow: 0 10px 15px -3px rgba(102, 126, 234, 0.3);
|
|
}
|
|
|
|
.contact-box h3 {
|
|
margin-bottom: 20px;
|
|
font-size: 1.3rem;
|
|
color: white;
|
|
}
|
|
|
|
.contact-box ul {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.contact-box li {
|
|
color: white;
|
|
margin-bottom: 8px;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.footer {
|
|
text-align: center;
|
|
padding: 40px 0;
|
|
color: #718096;
|
|
font-size: 0.95rem;
|
|
margin-top: 60px;
|
|
}
|
|
|
|
.section {
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.section:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
a {
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
a:hover {
|
|
color: #5a67d8;
|
|
}
|
|
|
|
.gradient-text {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.container {
|
|
padding: 20px 16px;
|
|
}
|
|
|
|
.content {
|
|
padding: 40px 24px;
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.header {
|
|
margin-bottom: 40px;
|
|
padding: 30px 0;
|
|
}
|
|
|
|
.header h1 {
|
|
font-size: 2.2rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.3rem;
|
|
margin: 30px 0 16px 0;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.content {
|
|
padding: 30px 20px;
|
|
}
|
|
|
|
.header h1 {
|
|
font-size: 1.8rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1 class="gradient-text">Privacy Policy</h1>
|
|
<div class="date">Last Updated: August 28, 2025</div>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<div class="section">
|
|
<div class="highlight">
|
|
<p><strong>MyQrCode</strong> is committed to protecting your privacy. This Privacy Policy explains
|
|
how we collect, use, and safeguard your information when you use our mobile application.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>1. Information We Collect</h2>
|
|
<p>We collect only the minimum information necessary for the app's functionality:</p>
|
|
<ul>
|
|
<li><strong>Camera Access:</strong> Required to scan QR codes and barcodes using your device's
|
|
camera</li>
|
|
<li><strong>Photo Library Access:</strong> Required to save generated QR codes and barcodes to your
|
|
photo library</li>
|
|
</ul>
|
|
<p><strong>Important:</strong> We do not collect personal information such as names, email addresses,
|
|
phone numbers, or any other personally identifiable information.</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>2. How We Use Your Information</h2>
|
|
<p>The information we collect is used solely for app functionality:</p>
|
|
<ul>
|
|
<li>Scanning QR codes and barcodes</li>
|
|
<li>Generating QR codes and barcodes</li>
|
|
<li>Saving images to your device</li>
|
|
</ul>
|
|
<p>We do not use your information for advertising, analytics, or any other commercial purposes.</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>3. Information Sharing</h2>
|
|
<p>We do not share, sell, or transfer your information to third parties. All data processing occurs
|
|
locally on your device, and we do not transmit any information to external servers.</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>4. Data Security</h2>
|
|
<p>We implement appropriate security measures to protect your information:</p>
|
|
<ul>
|
|
<li>All data is stored locally on your device</li>
|
|
<li>No data is transmitted to external servers</li>
|
|
<li>We use industry-standard security practices</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>5. Your Rights</h2>
|
|
<p>You have the right to:</p>
|
|
<ul>
|
|
<li>Access, modify, or delete your data at any time</li>
|
|
<li>Revoke app permissions through your device settings</li>
|
|
<li>Uninstall the app to remove all related data</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>6. Children's Privacy</h2>
|
|
<p>Our app does not knowingly collect personal information from children under 13. If you are a parent
|
|
or guardian and believe your child has provided us with personal information, please contact us
|
|
immediately.</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>7. Changes to This Policy</h2>
|
|
<p>We may update this Privacy Policy from time to time. We will notify you of any changes by posting the
|
|
new Privacy Policy in the app and updating the "Last Updated" date.</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>8. Third-Party SDKs and Services</h2>
|
|
<p>Our app may integrate with third-party SDKs and services to enhance functionality:</p>
|
|
<ul>
|
|
<li><strong>Facebook SDK:</strong> Used for Facebook event creation and sharing features. The Facebook SDK may collect and process data according to Facebook's own privacy policy. You can review Facebook's privacy policy at <a href="https://www.facebook.com/privacy/policy">https://www.facebook.com/privacy/policy</a></li>
|
|
<li><strong>Core Data Framework:</strong> Apple's local data storage framework for managing app data on your device</li>
|
|
<li><strong>Camera Framework:</strong> Apple's camera framework for QR code and barcode scanning functionality</li>
|
|
</ul>
|
|
<p><strong>Note:</strong> Third-party SDKs have their own privacy policies and data collection practices. We recommend reviewing their respective privacy policies for complete information about how they handle your data.</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>9. Contact Us</h2>
|
|
<h3>Get in Touch</h3>
|
|
<p>If you have any questions about this Privacy Policy or our data practices, please contact us through:
|
|
</p>
|
|
<ul>
|
|
<li>• App Store reviews and ratings</li>
|
|
<li>• Our support channels</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<div class="highlight">
|
|
<p><strong>By using this app, you agree to the terms of this Privacy Policy.</strong></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>© 2025 MyQrCode. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |