-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
157 lines (147 loc) · 4.91 KB
/
Copy pathterms.html
File metadata and controls
157 lines (147 loc) · 4.91 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Terms of Service · Z-Editor</title>
<meta name="robots" content="index, follow" />
<style>
:root {
color-scheme: light;
}
body {
margin: 0;
background: #f8f9fa;
color: #202124;
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
}
.wrap {
max-width: 760px;
margin: 0 auto;
padding: 32px 20px 64px;
}
header.brand {
display: flex;
align-items: baseline;
gap: 12px;
margin-bottom: 8px;
}
header.brand a {
color: #1a73e8;
font-size: 22px;
font-weight: 700;
text-decoration: none;
}
header.brand span {
color: #5f6368;
font-size: 14px;
}
h1 {
font-size: 28px;
margin: 16px 0 4px;
}
h2 {
font-size: 18px;
margin: 28px 0 8px;
}
.updated {
color: #5f6368;
font-size: 14px;
}
a {
color: #1a73e8;
}
code {
background: #eef0f2;
border-radius: 4px;
padding: 1px 5px;
font-size: 90%;
}
footer {
margin-top: 40px;
border-top: 1px solid #e0e0e0;
padding-top: 16px;
color: #5f6368;
font-size: 14px;
}
</style>
</head>
<body>
<div class="wrap">
<header class="brand">
<a href="/">Z-Editor</a>
<span>Terms of Service</span>
</header>
<h1>Terms of Service</h1>
<p class="updated">Last updated: 12 July 2026</p>
<h2>1. Acceptance of terms</h2>
<p>
By accessing or using Z-Editor ("the app"), you agree to these Terms of Service. If you do
not agree, please do not use the app.
</p>
<h2>2. The service</h2>
<p>
Z-Editor is a free, open-source document editor that runs entirely in your web browser. It is
provided at no charge and without any account. There is no Z-Editor server that stores your
documents; your work stays on your device or in storage you connect, such as your own Google
Drive.
</p>
<h2>3. Google Drive integration</h2>
<p>
If you connect Google Drive, you authorize the app to open and save files that you select or
create with it, using Google's <code>drive.file</code> permission. Your use of Google Drive is
also governed by
<a href="https://policies.google.com/terms" target="_blank" rel="noopener noreferrer"
>Google's Terms of Service</a
>. You are responsible for your Google account and the content you store there. See our
<a href="/privacy.html">Privacy Policy</a> for how Drive data is handled.
</p>
<h2>4. Acceptable use</h2>
<p>You agree not to use the app to:</p>
<ul>
<li>violate any applicable law or the rights of others;</li>
<li>create, store, or distribute unlawful, infringing, or harmful content;</li>
<li>attempt to disrupt, attack, or reverse-engineer the service in a harmful way.</li>
</ul>
<p>
You retain all rights to the documents you create. You are solely responsible for your
content and for keeping your own backups.
</p>
<h2>5. Disclaimer of warranties</h2>
<p>
The app is provided "as is" and "as available", without warranties of any kind, whether
express or implied, including fitness for a particular purpose and non-infringement. We do not
warrant that the app will be uninterrupted, error-free, or that any data will be preserved.
Always keep your own backups of important documents.
</p>
<h2>6. Limitation of liability</h2>
<p>
To the maximum extent permitted by law, Z-Editor and its contributors shall not be liable for
any indirect, incidental, special, consequential, or punitive damages, or any loss of data,
arising out of or related to your use of the app.
</p>
<h2>7. Changes</h2>
<p>
We may modify or discontinue the app, or update these terms, at any time. Changes are posted
on this page with a new "Last updated" date. Continued use after changes constitutes
acceptance.
</p>
<h2>8. Contact</h2>
<p>
Questions about these terms? Email
<a href="mailto:opensldev@gmail.com">opensldev@gmail.com</a> or open an issue on
<a
href="https://github.com/Z-Editor/Z-Editor/issues"
target="_blank"
rel="noopener noreferrer"
>GitHub</a
>.
</p>
<footer>
<a href="/">← Back to Z-Editor</a> · <a href="/privacy.html">Privacy Policy</a>
</footer>
</div>
</body>
</html>