-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomer Page.php
69 lines (50 loc) · 2.03 KB
/
Customer Page.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
<?php
session_start();
if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] !==true)
{
header("location: login page.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Customer Page</title>
<link href="css/homepage.css" rel="stylesheet" type="text/css">
<link media="screen and (max-width: 1170px)" href="css/phne.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<nav class="navbar">
<ul>
<li><a href="logout.php"> <button class="logbtn">Log out</button></a></li>
<!-- <li><a href="#">About</a></li> -->
<li><a href = "customer Profile.php"> MyProfile</a></li>
<li><a href="FAQs Page(customers).php">FAQs</a></li>
<li><a href="Raise Complaint.php">Raise Complaint</a></li>
<li><a href="cust-Offers.php">Offers</a></li>
<li><a href="Customer Page.php" class="active">Home </a></li>
<img src="img/crm-icon-png.png" alt="logo">
</ul>
</nav>
</header>
<div class="textblck">
<p>Welcome to</p>
<p>Customer Relationship </p>
<p>Management</p>
<p id="txt">Customer Relationship management is the strongest and the most efficient approach in maintaining and
creating relationships with customers.CRM helps businesses build a relationship with their customers that,
in turn, creates loyalty and customer retention.</p>
</div>
<img src= "img/custom.jpg" align="right" width="860px" height="520px">
<!-- <div class="btnblck" >
<a href="#" ><button class="btn" >Sign Up Now</button></a>
</div> -->
<footer class="footer">
<p class="footer-txt">
Copyright © 2027 www.CRMSystem.com - All rights reserved
</p>
</footer>
</div>
</body>
</html>