-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathindex.php
47 lines (40 loc) · 962 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>
PHP FOR BEGINNERS: BUILD YOUR FIRST SIMPLE CRM FROM SCRATCH
</title>
</head>
<body>
<h1>PHP FOR BEGINNERS: BUILD YOUR FIRST SIMPLE CRM FROM SCRATCH</h1>
<div>
<p>
Customer Relationship Management (CRM) is a system that manages customer interactions and data throughout the customer lifecycle between the customer and the company across different channels.
</p>
<p>
In the simple CRM system demo, salespeople can:
</p>
<ul>
<li>Access their tasks</li>
<li>View their leads </li>
<li>Create new tasks for each lead</li>
<li>Create new opportunity</li>
<li>Lose a sale</li>
</ul>
<p>
Sales managers will be able to:
</p>
<ul>
<li>Manage all customers </li>
<li>Manage sales team</li>
<li>View current sales activities</li>
</ul>
</div>
<div>
<h2>Visit Demo:</h2>
<div>
<a href="sales/tasks.php">Sales</a> | <a href="managers/pipeline.php">Manager</a>
</div>
</div>
</body>
</html>