-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathtermsofservice.html
444 lines (402 loc) · 21 KB
/
termsofservice.html
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
<!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</title>
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./Chatbot/chat.css">
<script src="./navigateToPages/scriptDashboard.js"></script>
<script src="./Chatbot/chat.js" defer></script>
<script src="https://cdn.tailwindcss.com"></script>
<link href="./output.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,1,0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
/* Scroll to Top Button */
#scrollToTopBtn {
display: none;
position: fixed;
bottom: 85px;
right: 40px;
height: 50px;
width: 50px;
background-color: rgb(80, 183, 218);
color: white;
border: none;
border-radius: 50%;
padding: 10px;
cursor: pointer;
font-size: 15px;
}
#scrollToTopBtn:hover {
background-color: rgb(80, 183, 218);
}
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-image: url('./img/New Background.jpeg'); /* Added background image */
background-size: cover; /* Ensures the image covers the entire body */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Ensures the image doesn’t repeat */
background-attachment: fixed; /* Keeps the image fixed during scrolling */
color: #333;
}
/* Style for the container */
.container {
width: 90%;
max-width: 1000px;
margin: 20px auto;
padding: 30px;
background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background */
border-radius: 10px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
line-height: 1.6;
font-family: 'Arial', sans-serif;
}
/* Heading Styles */
.container h1, .container h3 {
color: #333;
font-family: 'Georgia', serif;
margin-top: 30px;
margin-bottom: 15px;
font-weight: bold;
}
/* Style for smaller subheadings */
.container h1 {
font-size: 1.8em;
color: #1a73e8;
border-bottom: 2px solid #f1f1f1;
padding-bottom: 5px;
}
.container h3 {
font-size: 1.5em;
text-align: center;
color: #444;
}
/* Paragraph Styles */
.container p {
font-size: 1em;
color: #555;
margin-bottom: 20px;
line-height: 1.7;
}
/* List Styles */
.container ul {
list-style-type: disc;
margin-left: 40px;
}
.container ul li {
margin-bottom: 10px;
}
/* Link Style */
.container a {
color: #1a73e8;
text-decoration: none;
font-weight: bold;
}
.container a:hover {
text-decoration: underline;
}
/* Section Styling */
.container section {
margin-bottom: 30px;
}
/* Hover effect on sections */
.container section:hover {
background-color: #f7f7f7;
padding: 20px;
border-radius: 8px;
}
/* Button Styling (if needed in future) */
button {
background-color: #1a73e8;
color: white;
padding: 12px 24px;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 1em;
}
button:hover {
background-color: #155ab7;
}
/* Responsive Design */
@media (max-width: 768px) {
.container {
width: 95%;
padding: 20px;
}
.container h1, .container h3 {
font-size: 1.3em;
}
.container p {
font-size: 0.95em;
}
.container ul {
margin-left: 20px;
}
}
header {
position: -webkit-sticky; /* For Safari */
position: sticky;
top: 0;
z-index: 1000; /* Adjust as needed */
}
.content { height: auto; /* Example content height to test scrolling */
padding: 20px;
background-color: #f4f4f4;
}
html, body {
height: 100%;
margin: 0;
}
</style>
</head>
<body >
<header>
<div>
<ul class="sidebar">
<li>
<svg onclick=hideSidebar() xmlns="http://www.w3.org/2000/svg" height="27px" viewBox="0 -960 960 960" width="27px" fill="#000000"><path d="m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z"/></svg>
</li>
<li><a href="./navigateToPages/aboutus.html">About Us</a></li>
<li><a href="./navigateToPages/profile.html">STUDENT Profile</a></li>
<li><a href="./navigateToPages/contact.html">CALENDAR</a></li>
<li><a href="./navigateToPages/faq2.html">FAQ</a></li>
<li><a href="./drag-drop.html">TASK MANAGER</a></li>
<li>
<a href="./navigateToPages/services.html">
Explore
<button class="button-explore">
<svg
class="svgIcon"
viewBox="0 0 512 512"
height="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm50.7-186.9L162.4 380.6c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31L325.1 306.7c-3.2 8.5-9.9 15.1-18.4 18.4zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"
></path>
</svg>
</button>
</a>
</li>
<li>
<button class="sign-up">
<span><a href="sign_up.html" style="color:white;">Sign Up</a></span>
</button>
</li>
<li>
<button class="log-in"><span><a href="Login-page/login-pg.html" style="color:white;">Log In</a></span></button>
</li>
</ul>
</div>
<nav class="navbar">
<div class="left">
<a href="../index.html">
<img src="./img/logo.jpg" alt="Logo" class="logo" />
</a>
<div class="group">
<svg class="icon" aria-hidden="true" viewBox="0 0 24 24">
<g>
<path
d="M21.53 20.47l-3.66-3.66C19.195 15.24 20 13.214 20 11c0-4.97-4.03-9-9-9s-9 4.03-9 9 4.03 9 9 9c2.215 0 4.24-.804 5.808-2.13l3.66 3.66c.147.146.34.22.53.22s.385-.073.53-.22c.295-.293.295-.767.002-1.06zM3.5 11c0-4.135 3.365-7.5 7.5-7.5s7.5 3.365 7.5 7.5-3.365 7.5-7.5 7.5-7.5-3.365-7.5-7.5z"
></path>
</g>
</svg>
<input placeholder="Search" type="search" class="input"/>
</div>
</div>
<ul class="navbar-list hideOnSmallScreen">
<li><a href="../navigateToPages/aboutus.html">About Us</a></li>
<li><a href="../navigateToPages/profile.html">STUDENT Profile</a></li>
<li><a href="../navigateToPages/contact.html">CALENDAR</a></li>
<li><a href="../navigateToPages/faq2.html">FAQ</a></li>
<li><a href="./Contributors/contributor.html">CONTRIBUTORS</a></li>
<li><a href="contactus.html">CONTACT US</a></li>
</ul>
</nav>
<div class="right hideOnSmallScreen">
<a href="../navigateToPages/services.html">
<button class="button-explore">
<svg
class="svgIcon"
viewBox="0 0 512 512"
height="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm50.7-186.9L162.4 380.6c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31L325.1 306.7c-3.2 8.5-9.9 15.1-18.4 18.4zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"
></path>
</svg>
</button>
</a>
<div class="Authenticate hideOnSmallScreen">
<button class="sign-up">
<span><a href="sign_up.html" style="color:white;">Sign Up</a></span>
</button>
<button class="log-in"><span><a href="Login-page/login-pg.html" style="color:white;">Log In</a></span></button>
</div>
<label class="theme-switch hideOnSmallScreen">
<input type="checkbox" class="theme-switch__checkbox" id="themeToggle" onchange="toggleTheme()">
<div class="theme-switch__container">
<div class="theme-switch__clouds"></div>
<div class="theme-switch__stars-container">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 144 55" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M135.831 3.00688C135.055 3.85027 134.111 4.29946 133 4.35447C134.111 4.40947 135.055 4.85867 135.831 5.71123C136.607 6.55462 136.996 7.56303 136.996 8.72727C136.996 7.95722 137.172 7.25134 137.525 6.59129C137.886 5.93124 138.372 5.39954 138.98 5.00535C139.598 4.60199 140.268 4.39114 141 4.35447C139.88 4.2903 138.936 3.85027 138.16 3.00688C137.384 2.16348 136.996 1.16425 136.996 0C136.996 1.16425 136.607 2.16348 135.831 3.00688ZM31 23.3545C32.1114 23.2995 33.0551 22.8503 33.8313 22.0069C34.6075 21.1635 34.9956 20.1642 34.9956 19C34.9956 20.1642 35.3837 21.1635 36.1599 22.0069C36.9361 22.8503 37.8798 23.2903 39 23.3545C38.2679 23.3911 37.5976 23.602 36.9802 24.0053C36.3716 24.3995 35.8864 24.9312 35.5248 25.5913C35.172 26.2513 34.9956 26.9572 34.9956 27.7273C34.9956 26.563 34.6075 25.5546 33.8313 24.7112C33.0551 23.8587 32.1114 23.4095 31 23.3545ZM0 36.3545C1.11136 36.2995 2.05513 35.8503 2.83131 35.0069C3.6075 34.1635 3.99559 33.1642 3.99559 32C3.99559 33.1642 4.38368 34.1635 5.15987 35.0069C5.93605 35.8503 6.87982 36.2903 8 36.3545C7.26792 36.3911 6.59757 36.602 5.98015 37.0053C5.37155 37.3995 4.88644 37.9312 4.52481 38.5913C4.172 39.2513 3.99559 39.9572 3.99559 40.7273C3.99559 39.563 3.6075 38.5546 2.83131 37.7112C2.05513 36.8587 1.11136 36.4095 0 36.3545ZM56.8313 24.0069C56.0551 24.8503 55.1114 25.2995 54 25.3545C55.1114 25.4095 56.0551 25.8587 56.8313 26.7112C57.6075 27.5546 57.9956 28.563 57.9956 29.7273C57.9956 28.9572 58.172 28.2513 58.5248 27.5913C58.8864 26.9312 59.3716 26.3995 59.9802 26.0053C60.5976 25.602 61.2679 25.3911 62 25.3545C60.8798 25.2903 59.9361 24.8503 59.1599 24.0069C58.3837 23.1635 57.9956 22.1642 57.9956 21C57.9956 22.1642 57.6075 23.1635 56.8313 24.0069ZM81 25.3545C82.1114 25.2995 83.0551 24.8503 83.8313 24.0069C84.6075 23.1635 84.9956 22.1642 84.9956 21C84.9956 22.1642 85.3837 23.1635 86.1599 24.0069C86.9361 24.8503 87.8798 25.2903 89 25.3545C88.2679 25.3911 87.5976 25.602 86.9802 26.0053C86.3716 26.3995 85.8864 26.9312 85.5248 27.5913C85.172 28.2513 84.9956 28.9572 84.9956 29.7273C84.9956 28.563 84.6075 27.5546 83.8313 26.7112C83.0551 25.8587 82.1114 25.4095 81 25.3545ZM136 36.3545C137.111 36.2995 138.055 35.8503 138.831 35.0069C139.607 34.1635 139.996 33.1642 139.996 32C139.996 33.1642 140.384 34.1635 141.16 35.0069C141.936 35.8503 142.88 36.2903 144 36.3545C143.268 36.3911 142.598 36.602 141.98 37.0053C141.372 37.3995 140.886 37.9312 140.525 38.5913C140.172 39.2513 139.996 39.9572 139.996 40.7273C139.996 39.563 139.607 38.5546 138.831 37.7112C138.055 36.8587 137.111 36.4095 136 36.3545ZM101.831 49.0069C101.055 49.8503 100.111 50.2995 99 50.3545C100.111 50.4095 101.055 50.8587 101.831 51.7112C102.607 52.5546 102.996 53.563 102.996 54.7273C102.996 53.9572 103.172 53.2513 103.525 52.5913C103.886 51.9312 104.372 51.3995 104.98 51.0053C105.598 50.602 106.268 50.3911 107 50.3545C105.88 50.2903 104.936 49.8503 104.16 49.0069C103.384 48.1635 102.996 47.1642 102.996 46C102.996 47.1642 102.607 48.1635 101.831 49.0069Z" fill="currentColor"></path>
</svg>
</div>
<div class="theme-switch__circle-container">
<div class="theme-switch__sun-moon-container">
<div class="theme-switch__moon">
<div class="theme-switch__spot"></div>
<div class="theme-switch__spot"></div>
<div class="theme-switch__spot"></div>
</div>
</div>
</div>
</div>
</label>
</div>
<div class="menu">
<svg class="menu-button" onclick=showSidebar() style="cursor: pointer;" xmlns="http://www.w3.org/2000/svg" height="27px" viewBox="0 -960 960 960" width="27px" fill="#000000"><path d="M120-240v-80h720v80H120Zm0-200v-80h720v80H120Zm0-200v-80h720v80H120Z"/></svg>
</div>
</header>
<body>
<div class="content">
<br>
<div class="about backdrop-blur-sm bg-white/80 w-5/6 rounded-2xl mx-auto p-10">
<h1 style="text-align: center; font-weight: bold; font-size: 2em;">Terms Of Service</h1>
<p class="text-black">Welcome to Studentify! By accessing or using our platform, you agree to comply with these Terms of Service ("Terms"). These Terms govern your use of the services, resources, and features provided by STUDENTIFY. If you do not agree with these Terms, please refrain from using the Platform.</p>
<br>
<h1 style="text-align: left; font-weight: bold; font-size: 1.7em;">Eligibility</h1>
<p class="text-black">Our services are intended for students and individuals seeking educational resources. By using the Platform, you affirm that you are at least 13 years old or have the consent of a parent or legal guardian if you are under 18.</p>
<br>
<h1 style="text-align: left; font-weight: bold; font-size: 1.7em;">Account Responsibilities</h1>
<p class="text-black"> Users may need to create an account to access certain features. You are responsible for maintaining the confidentiality of your account credentials and for all activities under your account. Notify us immediately if you suspect unauthorized use of your account.</p>
<br>
<h1 style="text-align: left; font-weight: bold; font-size: 1.7em;">Use Of Services</h1>
<p class="text-black">You agree to use the Platform responsibly and in compliance with all applicable laws. Prohibited activities include, but are not limited to:
<ul style="list-style-type: disc; margin-left: 20px;">
<li>Misusing or duplicating content from the Platform.</li>
<li>Engaging in harmful, offensive, or illegal activities.</li>
<li>Disrupting the functionality of the Platform.</li>
</ul>
</p>
<br>
<h1 style="text-align: left; font-weight: bold; font-size: 1.7em;">Content Ownership and Licensing</h1>
<p class="text-black">All content provided by the Platform, including but not limited to courses, resources, and materials, is the property of Studentify or its licensors. Users retain ownership of content they submit but grant Studentify a non-exclusive license to use, modify, and display such content for Platform-related purposes.</p>
<br>
<h1 style="text-align: left; font-weight: bold; font-size: 1.7em;">Payments and Refunds</h1>
<p class="text-black">If the Platform offers paid services or courses, all fees will be clearly stated. Refunds are subject to our refund policy, which will be outlined in the service details.</p>
<br>
<h1 style="text-align: left; font-weight: bold; font-size: 1.7em;">Privacy and Data Usage</h1>
<p class="text-black">Your privacy is important to us. Our Privacy Policy governs the collection, use, and storage of your data. By using the Platform, you consent to such practices as outlined in the Privacy Policy.</p>
<br>
<h1 style="text-align: left; font-weight: bold; font-size: 1.7em;">Limitations of Liability</h1>
<p class="text-black">STUDENTIFY is not responsible for:
<ul style="list-style-type: disc; margin-left: 20px;">
<li>Technical disruptions or errors beyond our control.</li>
<li>Losses or damages resulting from the use of third-party links or content.</li>
<li>User reliance on the Platform's content for decisions or outcomes.</li>
</ul>
</p>
<br>
<h1 style="text-align: left; font-weight: bold; font-size: 1.7em;">Termination Of Services</h1>
<p class="text-black">We reserve the right to suspend or terminate your account or access to the Platform at any time, with or without notice, for violating these Terms or engaging in prohibited conduct.</p>
<br>
<h1 style="text-align: left; font-weight: bold; font-size: 1.7em;">Changes To Terms</h1>
<p class="text-black">We may revise these Terms from time to time. Updates will be posted on this page, and continued use of the Platform constitutes acceptance of the revised Terms.</p>
<br>
</div>
</div>
</body>
<footer class="footer">
<div class="footer-container">
<div class="footer-section" style="max-width: 400px;">
<h4>About</h4>
<p style="color: rgb(8, 56, 8); font-weight: 500; ">Welcome to STUDENTIFY, your go-to platform for unlocking academic potential and broadening horizons. We empower students with tailored resources, expert-led courses, and a dynamic learning environment to foster growth, curiosity, and critical thinking for success..</p>
</div>
<div class="footer-section" style="margin-left: 0px; margin-right: 0px;">
<h4>Quick Links</h4>
<ul>
<li><a href="navigateToPages\aboutus.html">About us</a></li>
<li><a href="navigateToPages\profile.html">Student Profile</a></li>
<li><a href="navigateToPages\faq2.html">FAQ</a></li>
<li><a href="Contributors\contributor.html">Contributors</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</div>
<div class="footer-section" style="margin-left: 0;">
<h4>Follow Us</h4>
<div class="social-icons">
<a href="#" aria-label="Facebook"><i class="fab fa-facebook"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p style="color: rgb(8, 56, 8);">© 2024 Studentify. All rights reserved. </p>
<p style="margin-top: 8px; color: rgb(8, 56, 8);">Made with love 💖</p>
</div>
</footer>
<button class="chatbot-toggler">
<span class="material-symbols-rounded">mode_comment</span>
<span class="material-symbols-outlined">close</span>
</button>
<div class="chatbot">
<header>
<h2>Chatbot</h2>
<span class="close-btn material-symbols-outlined">close</span>
</header>
<ul class="chatbox">
<li class="chat incoming">
<span class="material-symbols-outlined">smart_toy</span>
<p>Hi there 👋<br>How can I help you today?</p>
</li>
</ul>
<div class="chat-input">
<textarea placeholder="Enter a message..." spellcheck="false" required></textarea>
<span id="send-btn" class="material-symbols-rounded">send</span>
</div>
</div>
<script src="./script.js"></script>
<script>
const themeToggle = document.querySelector('.theme-toggle');
const icon = themeToggle.querySelector('span');
themeToggle.addEventListener('click', () => {
document.body.classList.toggle('dark-theme');
if (document.body.classList.contains('dark-theme')) {
icon.textContent = 'dark_mode';
} else {
icon.textContent = 'light_mode';
}
});
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script>
// Get the button
let mybutton = document.getElementById("scrollToTopBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
};
// When the user clicks on the button, scroll to the top of the document
mybutton.onclick = function () {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
};
</script>
</body>
</html>