-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPP.php
More file actions
70 lines (52 loc) · 2.12 KB
/
PP.php
File metadata and controls
70 lines (52 loc) · 2.12 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
<?php include 'includes/session.php'; ?>
<?php include 'includes/header.php'; ?>
<body class="hold-transition skin-blue layout-top-nav">
<div class="wrapper">
<?php include 'includes/navbar.php'; ?>
<div class="content-wrapper" style="background-color: mintcream;">
<div class="container">
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-sm-9">
<?php
if(isset($_SESSION['error'])){
echo "
<div class='alert alert-danger'>
".$_SESSION['error']."
</div>
";
unset($_SESSION['error']);
}
?>
<!-- Privacy Policy Content -->
<h2>Privacy Policy</h2>
<p>This is the privacy policy of [Your Company Name], and it explains how we collect and use your personal information when you use our website.</p>
<h3>Personal Information</h3>
<p>This includes your name, contact information (such as email address, phone number), and any other information you provide to us when making a purchase or contacting us.</p>
<h3>Payment Information</h3>
<p>When you make a purchase, we may collect payment information, such as credit card details or other payment methods.</p>
<h3>Usage Data</h3>
<p>We may collect information about your interactions with our website or store, such as the pages you visit or the products you view.</p>
<h2>How We Use Your Information</h2>
<ul>
<li>To process and fulfill your orders.</li>
<li>To communicate with you about your purchases and provide customer support.</li>
</ul>
<h2>Security</h2>
<p>We implement reasonable security measures to protect your information from unauthorized access or disclosure.</p>
<h2>Contact Us</h2>
<p>If you have any questions or concerns about this Privacy Policy, please contact us at [Contact Information].</p>
</div>
<div class="col-sm-3">
<?php include 'includes/sidebar.php' ?>
</div>
</div>
</section>
</div>
</div>
<?php include 'includes/footer.php'; ?>
</div>
<?php include 'includes/scripts.php'; ?>
</body>
</html>