-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathterms-of-service.php
executable file
·66 lines (62 loc) · 3.09 KB
/
terms-of-service.php
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
<?php
// include the header
include 'header.php';
?>
<main style="margin-top: 5em;">
<div style="margin: 5em 10em 0em 10em; width:50em">
<h1>Terms of Service</h1>
<p>Welcome to Service to Mankind (hereinafter referred to as "STM"). By accessing or using the STM website or
any of
its associated services, you agree to be bound by these Terms of Service (hereinafter referred to as
"Terms").
</p>
<h5>Use of Service</h5>
<p>The use of STM website and its associated services is for personal and non-commercial purposes only. You are
responsible for maintaining the confidentiality of your account information and are fully responsible for
all
activities that occur under your account. You must not use our services for any illegal or unauthorized
purpose,
or
in any manner that violates applicable laws.</p>
<h5>Intellectual Property</h5>
<p>All content on STM website including but not limited to text, graphics, logos, images, audio clips, and
software,
is
the property of STM and is protected by Indian copyright laws. You may not modify, copy, reproduce,
distribute,
transmit, display, publish, sell, license, create derivative works, or use any content available on the STM
website
without prior written consent from STM.</p>
<h5>Links to Third-party Websites</h5>
<p>STM website may contain links to third-party websites that are not owned or controlled by STM. We have no
control
over and assume no responsibility for the content, privacy policies, or practices of any third-party
websites.
You
acknowledge and agree that STM shall not be responsible or liable, directly or indirectly, for any damage or
loss
caused or alleged to be caused by or in connection with the use of any third-party websites.</p>
<h5>Updates to Terms</h5>
<p>STM reserves the right to modify or replace these Terms at any time. We will notify you of any changes to
these
Terms by updating the "Last Updated" date at the top of this page. Your continued use of the STM website or
its
associated services after any such modifications will constitute your acknowledgment and acceptance of the
modified Terms.</p>
<h5>Governing Law</h5>
<p>These Terms shall be governed and construed in accordance with the laws of India without regard to its
conflict
of
law provisions. Any dispute arising out of or in connection with these Terms shall be resolved by the courts
located in Hyderabad, India.</p>
<h5>Contact Us</h5>
<p>If you have any questions about these Terms, please contact us at
<a href="mailto:reach@stmorg.in">reach@stmorg.in</a>.
</p>
<p>Last Updated: 20th March 2030</p>
</div>
<?php
include 'footer.php';
?>
</main>
</body>