-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindexcustomers.html
More file actions
101 lines (92 loc) · 4.48 KB
/
Copy pathindexcustomers.html
File metadata and controls
101 lines (92 loc) · 4.48 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
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Customers</title>
<link rel="stylesheet" href="stylecustomers.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
</head>
<body>
<button id="goBackButton">
<span class="material-symbols-outlined">
arrow_back
</span>back</button>
<div class="card-container">
<div class="customer-card">
<h2>Customer List</h2>
<ul class="customer-list">
<li class="customer-item">
<span class="customer-name">Sanket Shinde</span>
<span class="customer-account">Account: 123456</span>
<span class="customer-balance">Balance: $5,000</span>
<span class="customer-email">Email: sanketshinde@gmail.com</span>
<span class="customer-phone">Phone: (123) 456-7890</span>
<span class="customer-status active">Status: Active</span>
</li>
<li class="customer-item">
<span class="customer-name">Shubham Shinde</span>
<span class="customer-account">Account: 654321</span>
<span class="customer-balance">Balance: $7,500</span>
<span class="customer-email">Email: shubshere@yahoo.com</span>
<span class="customer-phone">Phone: (098) 765-4321</span>
<span class="customer-status active">Status: Active</span>
</li>
<li class="customer-item">
<span class="customer-name">Prathamesh Jadhav</span>
<span class="customer-account">Account: 112233</span>
<span class="customer-balance">Balance: $3,200</span>
<span class="customer-email">Email: prathmesh@bing.com</span>
<span class="customer-phone">Phone: (111) 222-3333</span>
<span class="customer-status active">Status: Active</span>
</li>
<!-- Add more customer items as needed -->
</ul>
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Customers</title>
<link rel="stylesheet" href="stylecustomers.css">
</head>
<body>
<div class="card-container">
<div class="customer-card">
<h2>Customer List</h2>
<ul class="customer-list">
<li class="customer-item">
<span class="customer-name">Raj Singh</span>
<span class="customer-account">Account: 123456</span>
<span class="customer-balance">Balance: $5,000</span>
<span class="customer-email">Email: singhraj@gmail.com</span>
<span class="customer-phone">Phone: (125) 478-92401</span>
<span class="customer-status active">Status: Active</span>
</li>
<li class="customer-item">
<span class="customer-name">Prakash Mehta</span>
<span class="customer-account">Account: 654321</span>
<span class="customer-balance">Balance: $7,500</span>
<span class="customer-email">Email: mehtaprak@yahoo.com</span>
<span class="customer-status inactive">Status: Inactive</span>
<span class="timestamp">last seen 12 mins ago</span>
</li>
<li class="customer-item">
<span class="customer-name">Chaitanya Shingate</span>
<span class="customer-account">Account: 112233</span>
<span class="customer-balance">Balance: $3,200</span>
<span class="customer-email">Email: chaitya@bing.com</span>
<span class="customer-status inactive">Status: Inactive</span>
<span class="timestamp">last seen 22 mins ago</span>
</li>
<!-- Add more customer items as needed -->
</ul>
</div>
</div>
<script src="scriptcustomer.js"></script>
</body>
</html>