-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathterms.php
More file actions
100 lines (84 loc) · 3.87 KB
/
terms.php
File metadata and controls
100 lines (84 loc) · 3.87 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
<?php
$pageTitle = "Terms of Use";
require 'includes/header.php';
?>
<main class="container py-5">
<div class="glass-card p-4 p-md-5">
<h1 class="mb-4">Terms of Use</h1>
<p>
Welcome to <strong>NearBy Student Housing</strong>. By accessing or using our platform,
you agree to comply with and be bound by the following Terms of Use.
If you do not agree with any part of these terms, please do not use our services.
</p>
<hr class="my-4">
<h5 class="mt-4">1. Eligibility and Account Responsibilities</h5>
<p>
Users must provide accurate, complete, and updated information when creating an account.
You are responsible for maintaining the confidentiality of your account credentials
and for all activities that occur under your account.
</p>
<h5 class="mt-4">2. Acceptable Use</h5>
<p>By using this platform, you agree that you will not:</p>
<ul>
<li>Provide false or misleading information</li>
<li>Use the platform for unlawful or fraudulent purposes</li>
<li>Attempt to disrupt or compromise system security</li>
<li>Post harmful, abusive, or misleading content</li>
</ul>
<h5 class="mt-4">3. Platform Role</h5>
<p>
NearBy Student Housing acts solely as a housing discovery platform that connects
students with property owners or managers. We do not own, manage, or control
any listed properties and are not a party to rental agreements.
</p>
<h5 class="mt-4">4. Content Ownership</h5>
<p>
All platform content including design, branding, text, and functionality
is the property of NearBy Student Housing. Users may not copy, reproduce,
or distribute platform materials without prior permission.
</p>
<h5 class="mt-4">5. Listing Accuracy Disclaimer</h5>
<p>
While we strive to ensure accuracy, we do not guarantee the completeness,
reliability, or availability of property listings. Users are responsible
for independently verifying listing details before making decisions.
</p>
<h5 class="mt-4">6. Termination of Access</h5>
<p>
We reserve the right to suspend or terminate user accounts that violate
these Terms of Use or engage in inappropriate or unlawful conduct.
</p>
<h5 class="mt-4">7. Limitation of Liability</h5>
<p>
NearBy Student Housing is not responsible for disputes, damages,
losses, or claims arising between renters and property owners.
Use of the platform is at your own risk.
</p>
<h5 class="mt-4">8. Indemnification</h5>
<p>
Users agree to indemnify and hold harmless NearBy Student Housing
from any claims, liabilities, or expenses arising from misuse of the platform.
</p>
<h5 class="mt-4">9. Dispute Resolution</h5>
<p>
Any disputes arising from the use of this platform shall be resolved
in accordance with applicable laws and through appropriate legal procedures.
</p>
<h5 class="mt-4">10. Changes to Terms</h5>
<p>
We may update these Terms of Use at any time. Continued use of the platform
after updates indicates acceptance of the revised terms.
</p>
<h5 class="mt-4">11. Contact Information</h5>
<p>
For questions regarding these Terms of Use, please contact us at:
</p>
<p>
<strong>Email:</strong> support@nearbyhousing.com
</p>
<p class="mt-4 text-muted">
Last Updated: <?php echo date("F Y"); ?>
</p>
</div>
</main>
<?php require 'includes/footer.php'; ?>