forked from sachin13-10/pdf-tool-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
232 lines (226 loc) · 6.41 KB
/
terms.html
File metadata and controls
232 lines (226 loc) · 6.41 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="fc-id" content="REPLACE_WITH_FUNDING_CHOICES_ID" />
<title>Terms of Use - EditMyPDFs.com</title>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap"
rel="stylesheet"
/>
<style>
body {
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
sans-serif;
margin: 0;
color: #111;
background: #fff;
}
header,
footer {
border-bottom: 1px solid #eee;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
}
header nav a {
margin-left: 1rem;
color: #111;
text-decoration: none;
}
main {
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
}
h1 {
font-size: 1.8rem;
margin: 0;
}
h2 {
margin-top: 2rem;
}
p,
li {
color: #333;
line-height: 1.6;
}
footer {
border-top: 1px solid #eee;
text-align: center;
padding: 2rem;
margin-top: 3rem;
color: #777;
}
</style>
</head>
<body>
<header>
<h1>EDITMYPDFS<span style="font-weight: 400">.com</span></h1>
<nav>
<a href="./index.html">Home</a>
<a href="./about.html">About</a>
<a href="./privacy.html">Privacy</a>
<a href="./terms.html">Terms</a>
</nav>
</header>
<main>
<h2>Terms of Use</h2>
<a href="./terms.html">Terms</a>
<a href="./about.html#contact">Contact</a>
<p>
Last updated:
<!-- DATE -->
November 5, 2025
</p>
<h3>Acceptable use</h3>
<ul>
<li>
Use the tools only on documents you own or have explicit permission to
modify.
</li>
<li>
Do not use the site to infringe third‑party rights or for unlawful
purposes.
</li>
<li>Do not attempt to bypass DRM or technical protection measures.</li>
</ul>
<h3>Intellectual property</h3>
<p>
You retain ownership of your files. You are responsible for ensuring
that your use of the tools complies with applicable laws and third‑party
rights.
</p>
<h3>Third‑party libraries</h3>
<p>
This site uses open‑source libraries such as PDF.js (Apache‑2.0), PDFKit
(MIT), and pdf‑lib (MIT). These are used in accordance with their
licenses. Licenses and notices are available on request and may be
included in the repository.
</p>
<h3>Warranty and liability</h3>
<p>
The site is provided “as is” without warranties. We are not liable for
loss or damages arising from your use of the tools.
</p>
<h3>Changes</h3>
<p>
We may update these terms from time to time. Continued use constitutes
acceptance of any changes.
</p>
</main>
<footer>© 2025 EditMyPDFs.com — All rights reserved.</footer>
<!-- Cookie consent (minimal) -->
<div
id="cookie-consent"
style="
display: none;
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 1000;
background: #111;
color: #fff;
padding: 12px 16px;
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
display: flex;
gap: 12px;
justify-content: center;
align-items: center;
flex-wrap: wrap;
"
>
<span style="font-size: 14px">
We use cookies for ads and measurement. See our
<a
href="./privacy.html"
style="color: #93c5fd; text-decoration: underline"
>Privacy Policy</a
>.
</span>
<button
data-accept
style="
background: #22c55e;
color: #fff;
border: none;
border-radius: 6px;
padding: 8px 12px;
font-weight: 600;
cursor: pointer;
"
>
Accept
</button>
</div>
<script>
(function () {
var bar = document.getElementById("cookie-consent");
try {
if (localStorage.getItem("cookieConsent") === "accepted") {
if (bar) bar.style.display = "none";
return;
}
} catch (e) {}
if (!bar) return;
bar.style.display = "flex";
var btn = bar.querySelector("button[data-accept]");
if (btn)
btn.addEventListener("click", function () {
try {
localStorage.setItem("cookieConsent", "accepted");
} catch (e) {}
bar.remove();
});
})();
</script>
<!-- Suppress local banner and load Funding Choices CMP when configured -->
<script>
(function () {
function loadFundingChoices(id) {
var bar = document.getElementById("cookie-consent");
if (bar) bar.remove();
var s = document.createElement("script");
s.async = true;
s.crossOrigin = "anonymous";
s.src =
"https://fundingchoicesmessages.google.com/i/" +
encodeURIComponent(id);
document.head.appendChild(s);
}
var meta = document.querySelector('meta[name="fc-id"]');
var id =
(window.__FC_ID && ("" + window.__FC_ID).trim()) ||
(meta && (meta.content || "").trim());
if (id && !/^REPLACE_/i.test(id)) {
loadFundingChoices(id);
return;
}
var base =
location.pathname.indexOf("/features/") !== -1
? "../vendor/"
: "./vendor/";
var tagId = "cmp-id-loader";
if (!document.getElementById(tagId)) {
var t = document.createElement("script");
t.id = tagId;
t.async = true;
t.src = base + "cmp-id.js";
t.onload = function () {
var id2 =
(window.__FC_ID && ("" + window.__FC_ID).trim()) ||
(meta && (meta.content || "").trim());
if (id2 && !/^REPLACE_/i.test(id2)) loadFundingChoices(id2);
};
t.onerror = function () {};
document.head.appendChild(t);
}
})();
</script>
</body>
</html>