-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrivacy Policy.html
More file actions
152 lines (130 loc) · 6.13 KB
/
Privacy Policy.html
File metadata and controls
152 lines (130 loc) · 6.13 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
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
<!DOCTYPE html>
<!-- Coding By SAI PRITAM PANDA
Connect with me here, in LinkedIn: https://www.linkedin.com/in/saipritampanda/
-->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Privacy Policy - Task Master</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="Image Assets/Fav Icons/favicon-privacy-policy.png" type="image/png"> <!--Fav Icon-->
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1785962158595876"
crossorigin="anonymous"></script>
<script src="mastercodes.js"></script>
<style>
/* General Styles for the Privacy Policy Page */
body {
background: linear-gradient(135deg, #0e0e0e, #204cea);
color: white;
min-height: 100vh;
overflow-y: auto;
/* Ensure the page is scrollable */
margin: 0;
padding: 0;
}
h1,
h2,
p {
color: #fff;
}
.container {
background-color: rgba(255, 255, 255, 0.1);
padding: 10px;
border-radius: 12px;
margin-bottom: 5px;
}
.footer-div {
padding: 19px;
}
.card {
background-color: transparent;
/* Use transparent to maintain the gradient background */
border: none;
}
.card-body {
padding: 30px 30px 10px 30px;
}
.footer {
background-color: rgb(14, 14, 14, 0.44);
}
.footer p {
margin: 0;
font-size: larger;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="index.html">Task Master</a>
<!--
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Support</a>
</li>
</ul>
</div>
-->
</nav>
<div class="container mt-5">
<h1 class="text-center">Privacy Policy</h1>
<p id="version-top" class="text-center"><b>Version: 1.1.0</b></p>
<p class="text-center">Effective Date: January 1, 2024</p>
<div class="card mt-3">
<div class="card-body">
<h2>Introduction</h2>
<p>Task Master ("we", "our", or "us") is committed to protecting your privacy. This Privacy Policy
explains how we handle your personal information when you use our Task Master website and services.
</p><br>
<h2>No Information Collection</h2>
<p>Our Task Master application does not collect, store, or share any personal information. We do not
require you to create an account or provide any personal information to use our services. The tasks
you create and manage are stored locally on your device and are not transmitted to our servers or
any third-party services.</p><br>
<h2>No Third-Party Sharing</h2>
<p>We do not share, sell, or trade any information with third-party developers or services. Since we do
not collect any personal information, there is nothing to share with third parties.</p><br>
<h2>No Login Method</h2>
<p>Task Master does not have any login or authentication methods. You can use our application without
creating an account or logging in.</p><br>
<h2>Local Storage</h2>
<p>The tasks you create in Task Master are stored locally on your device. This means that only you have
access to your tasks, and they are not accessible by us or any third party. If you clear your
browser's local storage, your tasks will be permanently deleted and cannot be recovered.</p><br>
<h2>Changes to This Privacy 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 on this page. You are advised to review this Privacy Policy periodically for any
changes. Changes to this Privacy Policy are effective when they are posted on this page.</p><br>
<h2>Contact Us</h2>
<p>If you have any questions about this Privacy Policy, please contact us:</p>
<ul>
<li>Email: support@taskmaster.com</li>
</ul><br>
<h2>Version</h2>
<p>Current deployment is of <b id="version-bottom">Version: 1.1.0</b></p>
</div>
</div>
</div>
<footer class="footer mt-5 text-white text-center py-3">
<div class="container footer-div">
<p>© 2024 - <span id="current-year"></span> Task Master. All rights reserved.</p>
</div>
</footer>
<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>