-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
169 lines (153 loc) · 6.97 KB
/
Copy pathterms.html
File metadata and controls
169 lines (153 loc) · 6.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Use - Lentando</title>
<style>
:root {
--bg: #0a0a0a;
--card: #151515;
--text: #e0e0e0;
--muted: #888;
--primary: #4a9eff;
--border: #2a2a2a;
}
@media (prefers-color-scheme: light) {
:root {
--bg: #f5f5f5;
--card: #ffffff;
--text: #1a1a1a;
--muted: #666;
--primary: #0066cc;
--border: #e0e0e0;
}
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background: var(--card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 32px;
}
h1 {
font-size: 32px;
margin-bottom: 8px;
color: var(--text);
}
.updated {
color: var(--muted);
font-size: 14px;
margin-bottom: 32px;
}
h2 {
font-size: 20px;
margin-top: 32px;
margin-bottom: 12px;
color: var(--text);
}
p, li {
margin-bottom: 12px;
color: var(--text);
}
ul {
margin-left: 20px;
margin-bottom: 16px;
}
a {
color: var(--primary);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.back-link {
display: inline-block;
margin-top: 48px;
padding: 10px 20px;
background: var(--primary);
color: white;
border-radius: 8px;
text-decoration: none;
}
.back-link:hover {
opacity: 0.9;
text-decoration: none;
}
strong {
color: var(--text);
}
</style>
</head>
<body>
<div class="container">
<h1>Terms of Use</h1>
<p class="updated"><strong>Last updated:</strong> February 13, 2026</p>
<p>These Terms of Use ("Terms") govern your use of <strong>Lentando</strong> (the "App"). By using the App, you agree to these Terms. If you do not agree, do not use the App.</p>
<h2>1. Who we are</h2>
<ul>
<li><strong>App:</strong> Lentando — <a href="https://lentando.3d2k.com" target="_blank">lentando.3d2k.com</a></li>
<li><strong>Operator:</strong> <a href="https://www.frankforce.com" target="_blank">Frank Force Games</a></li>
<li><strong>Contact:</strong> <a href="mailto:frankforcegames@gmail.com">frankforcegames@gmail.com</a></li>
</ul>
<h2>2. The App</h2>
<p>Lentando is a local-first web app for tracking habits and substance-use-related events. You can use it without an account (data stays on your device) or sign in for optional cloud sync/backup.</p>
<h2>3. Accounts</h2>
<ul>
<li>Sign-in is optional. Cloud sync requires an account.</li>
<li>You are responsible for your account security and all activity under it.</li>
<li>Provide accurate information; do not impersonate others.</li>
<li>You can delete your account and cloud data from within the App.</li>
</ul>
<h2>4. Health disclaimer</h2>
<p>Lentando is for personal tracking only. It is <strong>not</strong> medical, psychiatric, or addiction-treatment advice, and is not a substitute for professional care.</p>
<h2>5. Acceptable use</h2>
<p>You agree not to:</p>
<ul>
<li>Use the App for any illegal purpose.</li>
<li>Access other users' data or accounts without authorization.</li>
<li>Interfere with or disrupt the App, its servers, or networks.</li>
<li>Upload malware or malicious code.</li>
<li>Attempt to bypass security, access non-public systems, or otherwise misuse the App.</li>
</ul>
<h2>6. Your content</h2>
<ul>
<li>You own the content you submit (entries, to-dos, settings).</li>
<li>You grant <strong>Frank Force Games</strong> a limited, non-exclusive, royalty-free license to host and process your content solely to operate the App.</li>
</ul>
<h2>7. Third-party services and privacy</h2>
<p>The App uses <strong>Google Firebase</strong> (Authentication, Firestore) and optional Google sign-in, each governed by their own terms. Your use of the App is also governed by our <a href="./privacy.html">Privacy Policy</a>.</p>
<h2>8. Changes and termination</h2>
<p>We may change, suspend, or discontinue any part of the App at any time without prior notice. We may terminate your access if you violate these Terms or if necessary to protect the App or its users. You may stop using the App at any time and delete your account/data in-app.</p>
<p>Sections covering content rights, disclaimers, liability, indemnification, and governing law continue to apply after termination.</p>
<h2>9. Disclaimers</h2>
<p>The App is provided "as is" and "as available" without warranties of any kind, express or implied, including merchantability, fitness for a particular purpose, or non-infringement.</p>
<h2>10. Limitation of liability</h2>
<p>To the maximum extent permitted by law, <strong>Frank Force Games</strong> is not liable for any indirect, incidental, special, consequential, or punitive damages arising from your use of the App. Our total liability will not exceed the greater of (a) amounts you paid us in the prior 12 months, or (b) $10 USD.</p>
<h2>11. Indemnification</h2>
<p>You agree to indemnify and hold harmless <strong>Frank Force Games</strong> from claims, damages, and expenses (including legal fees) arising from your use of the App or violation of these Terms.</p>
<h2>12. Governing law and disputes</h2>
<p>These Terms are governed by the laws of the State of <strong>Texas</strong>, United States. Before filing any legal claim, you agree to contact us (see Section 1) and attempt to resolve the dispute informally for 30 days. Unresolved disputes are subject to the exclusive jurisdiction of courts in <strong>Travis County, Texas</strong>.</p>
<h2>13. General</h2>
<ul>
<li><strong>Severability:</strong> Invalid provisions will be limited to the minimum extent necessary; remaining provisions remain in effect.</li>
<li><strong>Entire agreement:</strong> These Terms and the Privacy Policy are the entire agreement between you and Frank Force Games regarding the App.</li>
<li><strong>No waiver:</strong> Failure to enforce a provision is not a waiver of it.</li>
<li><strong>Assignment:</strong> You may not assign your rights without our consent. We may assign ours freely.</li>
<li><strong>Changes:</strong> We may update these Terms and will change the "Last updated" date above. Continued use after changes constitutes acceptance.</li>
</ul>
<h2>14. Contact</h2>
<p>Questions about these Terms: <a href="mailto:frankforcegames@gmail.com">frankforcegames@gmail.com</a></p>
<a href="./" class="back-link">← Back to Lentando</a>
</div>
</body>
</html>