-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathclients.html
More file actions
30 lines (30 loc) · 824 Bytes
/
Copy pathclients.html
File metadata and controls
30 lines (30 loc) · 824 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Client List</title>
<link rel="stylesheet" href="../css/styles.css">
</head>
<body>
<div class="container">
<h2>Client List</h2>
<button onclick="fetchClients()">Load Clients</button>
<table id="clientTable">
<thead>
<tr>
<th>ID</th>
<th>Email</th>
<th>Name</th>
<th>City</th>
<th>Telephone</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<p id="message"></p>
</div>
<script src="../js/get-all-client/script.js"></script>
</body>
</html>