-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterms.html
124 lines (104 loc) · 3.48 KB
/
terms.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
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Terms of Service - PyTik</title>
<link rel="stylesheet" href="assets/styles.css" />
</head>
<body>
<header>
<div class="container">
<h1>PyTik</h1>
<nav>
<a href="index.html">Home</a>
<a href="privacy.html">Privacy Policy</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<main>
<section class="container">
<h2>Terms of Service</h2>
<p>Last Updated: 02/16/2025</p>
<p>
Welcome to PyTik. By using this software, you agree to the
following Terms of Service. If you do not agree, do not use the App.
</p>
<h3>1. Acceptance of Terms</h3>
<p>
By downloading, installing, or using the App, you acknowledge that you
have read, understood, and agree to be bound by these Terms.
</p>
<h3>2. License and Restrictions</h3>
<p>The App is proprietary and closed-source software.</p>
<p>
You are granted a non-exclusive, non-transferable license to use the
App for personal or business use.
</p>
<p>
You may not distribute, reverse engineer, modify, or resell the
software.
</p>
<h3>3. Ownership</h3>
<p>
The App and all associated content, including but not limited to
logos, code, and documentation, are the intellectual property of
PyTik creator.
</p>
<p>No ownership rights are granted to you.</p>
<h3>4. Disclaimer of Warranties</h3>
<p>
The App is provided as is, without any express or implied warranties.
</p>
<p>
We do not guarantee that the App will be error-free, uninterrupted, or
meet your specific needs.
</p>
<h3>5. Limitation of Liability</h3>
<p>
Under no circumstances shall [Your Name or Company] be liable for any
damages, including but not limited to lost profits, data loss, or
indirect damages arising from the use or inability to use the App.
</p>
<h3>6. Privacy</h3>
<p>
The App does not collect, store, or share any personal data unless
explicitly stated.
</p>
<p>
Any third-party services used in conjunction with the App are subject
to their own privacy policies.
</p>
<h3>7. Updates and Modifications</h3>
<p>
We reserve the right to update, modify, or discontinue the App at any
time without prior notice.
</p>
<p>
Continued use of the App after updates constitutes acceptance of the
new terms.
</p>
<h3>8. Termination</h3>
<p>
We reserve the right to terminate your license to use the App if you
violate these Terms.
</p>
<h3>9. Governing Law</h3>
<p>
These Terms shall be governed by and interpreted in accordance with
the laws of Florida.
</p>
<p>
For any questions regarding these Terms, contact us at
abdulsardani42@gmail.com
</p>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 PyTik. All rights reserved.</p>
</div>
</footer>
</body>
</html>