-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathterms.html
More file actions
108 lines (92 loc) · 2.68 KB
/
terms.html
File metadata and controls
108 lines (92 loc) · 2.68 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
<!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 – ChatbotTutor</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background: #f9f9f9;
color: #333;
margin: 0;
padding: 0;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 40px auto;
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
h1 {
color: #4a90e2;
text-align: center;
}
h2 {
color: #222;
margin-top: 30px;
}
p {
margin-bottom: 16px;
}
footer {
text-align: center;
margin-top: 40px;
font-size: 0.9rem;
color: #777;
}
a {
color: #4a90e2;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Terms of Service</h1>
<p>Last Updated: July 20, 2025</p>
<h2>1. Acceptance of Terms</h2>
<p>
By using ChatbotTutor, you agree to be bound by these Terms of Service. If you do not agree, please do not use the service.
</p>
<h2>2. Description of Service</h2>
<p>
ChatbotTutor is an AI-powered chatbot that provides educational assistance through conversational interfaces, using Gemini API. The service may include text and image-based question handling.
</p>
<h2>3. User Accounts</h2>
<p>
You must register using a valid email through Firebase Authentication. You are responsible for maintaining the security of your account.
</p>
<h2>4. Acceptable Use</h2>
<p>
You agree not to misuse ChatbotTutor for any unlawful or harmful purpose. Do not upload offensive, misleading, or copyrighted content.
</p>
<h2>5. AI Responses</h2>
<p>
The chatbot responses are generated using machine learning and may not always be accurate. Do not rely on them for legal, medical, or life-critical decisions.
</p>
<h2>6. Privacy</h2>
<p>
We value your privacy. See our <a href="privacy.html">Privacy Policy</a> to learn how your data is used and protected.
</p>
<h2>7. Modifications to Terms</h2>
<p>
We reserve the right to modify these terms at any time. Changes will be posted on this page.
</p>
<h2>8. Termination</h2>
<p>
We may suspend or terminate your access to ChatbotTutor at any time for violations of these Terms.
</p>
<footer>
© 2025 ChatbotTutor. All rights reserved. |
<a href="index.html">Back to Home</a>
</footer>
</div>
</body>
</html>