-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
63 lines (53 loc) · 2.66 KB
/
terms.html
File metadata and controls
63 lines (53 loc) · 2.66 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
<!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 - GitLines</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
max-width: 800px;
margin: 40px auto;
line-height: 1.6;
color: #333;
background: #0a0a0f;
color: #e0e0e0;
padding: 20px;
}
h1, h2, h3 { color: #fff; margin-top: 30px; }
a { color: #667eea; }
.back-link { display: inline-block; margin-bottom: 30px; color: #667eea; }
</style>
</head>
<body>
<a href="index.html" class="back-link">← Back to Game</a>
<h1>Terms of Service</h1>
<p><strong>Last updated:</strong> <script>document.write(new Date().toLocaleDateString())</script></p>
<h2>1. Acceptance of Terms</h2>
<p>By accessing and playing GitLines, you agree to be bound by these Terms of Service.</p>
<h2>2. Description of Service</h2>
<p>GitLines is a free browser-based pattern memory puzzle game. The game is provided "as is" without warranties of any kind.</p>
<h2>3. User Conduct</h2>
<p>You agree not to:</p>
<ul style="margin-left: 20px; margin-bottom: 15px;">
<li>Use the service for any illegal purpose</li>
<li>Attempt to interfere with or disrupt the service</li>
<li>Use automated systems to access the service</li>
</ul>
<h2>4. Intellectual Property</h2>
<p>All content, features, and functionality of GitLines are owned by us and are protected by copyright and intellectual property laws.</p>
<h2>5. Disclaimer of Warranties</h2>
<p>The game is provided on an "AS IS" and "AS AVAILABLE" basis without any warranties, express or implied.</p>
<h2>6. Limitation of Liability</h2>
<p>We shall not be liable for any indirect, incidental, special, consequential or punitive damages resulting from your use of the service.</p>
<h2>7. Changes to Terms</h2>
<p>We reserve the right to modify these terms at any time. Continued use of the service constitutes acceptance of modified terms.</p>
<h2>8. Contact Information</h2>
<p>For questions about these Terms, contact: <a href="mailto:legal@gitlines.game">legal@gitlines.game</a></p>
<footer style="margin-top: 50px; padding-top: 20px; border-top: 1px solid #333; color: #666; font-size: 0.9rem;">
<a href="index.html" style="color: #667eea;">Back to Game</a> |
<a href="privacy.html" style="color: #667eea;">Privacy Policy</a>
</footer>
</body>
</html>