-
Notifications
You must be signed in to change notification settings - Fork 0
/
terms.php
69 lines (58 loc) · 3.06 KB
/
terms.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
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms and Conditions - Reservify</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f7f7f7;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.page-title {
font-size: 24px;
margin-top: 0;
}
.section-title {
font-size: 20px;
padding-top: 10px;
}
.section-text {
font-size: 16px;
line-height: 1.5;
}
</style>
</head>
<body>
<?php include "./partials/header.php" ?>
<div class="container">
<h1 class="page-title">Terms and Conditions</h1>
<p class="section-text">Welcome to Reservify!</p>
<h2 class="section-title">1. Reservation and Booking</h2>
<p class="section-text">1.1. By making a reservation through our website or any other booking platform, you agree to comply with our booking policies and terms and conditions.</p>
<p class="section-text">1.2. Reservation confirmations are sent via email. Please review all details carefully and contact us immediately if there are any discrepancies.</p>
<h2 class="section-title">2. Cancellation Policy</h2>
<p class="section-text">2.1. Our cancellation policy may vary based on the type of reservation and rate plan. Please review the specific cancellation terms provided during the booking process.</p>
<p class="section-text">2.2. To cancel or modify a reservation, please follow the instructions provided in your booking confirmation or contact our reservations team.</p>
<h2 class="section-title">3. Payment and Charges</h2>
<p class="section-text">3.1. Payment is due according to the terms specified during the booking process.</p>
<p class="section-text">3.2. Additional charges, such as taxes and fees, may apply. Please review your reservation details for a breakdown of charges.</p>
<h2 class="section-title">4. Privacy and Data Protection</h2>
<p class="section-text">4.1. We are committed to protecting your privacy. Our privacy policy outlines how we collect, use, and protect your personal information.</p>
<p class="section-text">4.2. By using our website and services, you consent to the collection and use of your information as described in our privacy policy.</p>
<h2 class="section-title">5. Changes to Terms and Conditions</h2>
<p class="section-text">5.1. Reservify reserves the right to modify these terms and conditions at any time. Changes will be effective upon posting on our website.</p>
<p class="section-text">5.2. It is your responsibility to review these terms periodically for updates.</p>
</div>
<?php include "./partials/footer.php" ?>
</body>
</html>