-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprivacy_policy.html
112 lines (95 loc) · 4.25 KB
/
privacy_policy.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">
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="css files/privacy_policy.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=DynaPuff:wght@400;700&display=swap" rel="stylesheet">
<title>Privacy Policy - चमmuch</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="brand">
<i class="fas fa-utensils"></i> चमmuch
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="Menu.html">Menu</a></li>
<li id="login-signup">
<a href="login.html">Login</a> | <a href="signup.html">Signup</a>
</li>
<li id="logout-profile" style="display: none;">
<a href="profile.html">Profile</a> | <a href="#" id="logout">Logout</a>
</li>
</ul>
</nav>
<!-- Privacy Policy Content -->
<div class="content">
<h1>Privacy Policy</h1>
<p><strong>Effective Date:</strong> <span id="effectiveDate"></span></p>
<p>Welcome to चमmuch (referred to as "we", "us", or "our"). This Privacy Policy describes how we collect, use, and protect your information when you use our college canteen app.</p>
<h2>1. Information We Collect</h2>
<p>We collect information to provide you with the best experience and ensure smooth transactions through our app.</p>
<h3>Personal Information</h3>
<p>We may collect personal details when you register or place orders, including:</p>
<ul>
<li>Name</li>
<li>Contact Information (Email, Phone Number)</li>
<li>Payment Information</li>
</ul>
<h3>Usage Data</h3>
<p>We collect data on how you interact with the app, such as:</p>
<ul>
<li>Order history</li>
<li>In-app preferences and settings</li>
<li>Device information (IP address, browser type, etc.)</li>
</ul>
<h2>2. How We Use Your Information</h2>
<p>Your information helps us to:</p>
<ul>
<li>Process and fulfill your orders</li>
<li>Provide customer support</li>
<li>Improve app functionality</li>
<li>Send notifications or updates about your orders</li>
<li>Personalize your user experience</li>
</ul>
<h2>3. Sharing Your Information</h2>
<p>We do not share your information with third parties, except:</p>
<ul>
<li>With service providers assisting in app operations (e.g., payment processing)</li>
<li>If required by law to comply with legal obligations</li>
<li>To protect our rights, privacy, safety, or property</li>
</ul>
<h2>4. Data Security</h2>
<p>We use appropriate security measures to protect your data against unauthorized access, alteration, or disclosure.</p>
<h2>5. Your Rights</h2>
<p>You may access, correct, or request the deletion of your personal information by contacting us. Additionally, you may manage or delete your data from within the app settings.</p>
<h2>6. Changes to Our Privacy Policy</h2>
<p>We may update this Privacy Policy periodically. We encourage you to review this page for any changes. Your continued use of the app signifies acceptance of any updates.</p>
<h2>7. Contact Us</h2>
<p>If you have any questions about this Privacy Policy, please contact us at:</p>
<p>Email: [email protected]</p>
<p>Phone: xxxxxxxxxx</p>
<p><em>Last updated: <span id="lastUpdated"></span></em></p>
</div>
<!-- Footer -->
<div id="footer"></div>
<script>
// JavaScript to set the current date
const date = new Date();
const options = { year: 'numeric', month: 'long', day: 'numeric' };
document.getElementById("effectiveDate").textContent = date.toLocaleDateString(undefined, options);
document.getElementById("lastUpdated").textContent = date.toLocaleDateString(undefined, options);
// Fetch footer content
fetch('footer.html')
.then(response => response.text())
.then(data => {
document.getElementById('footer').innerHTML = data;
});
</script>
<script src="./js files/navbar.js"></script>
</body>
</html>