32 lines
770 B
HTML
32 lines
770 B
HTML
<html>
|
|
<head>
|
|
<title>Widuri Client</title>
|
|
<link rel="stylesheet" href="//cdn.datatables.net/2.3.2/css/dataTables.dataTables.min.css">
|
|
</head>
|
|
<body>
|
|
<input type="text" placeholder="Name" />
|
|
<input type="text" placeholder="Phone" />
|
|
<button>Create</button>
|
|
<hr>
|
|
<table id="table-list">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Name</th>
|
|
<th>Phone</th>
|
|
<th>Act</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody></tbody>
|
|
|
|
</table>
|
|
|
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
<script src="//cdn.datatables.net/2.3.2/js/dataTables.min.js"></script>
|
|
<script src="js/carrack.js"></script>
|
|
<script src="js/data.js"></script>
|
|
|
|
</body>
|
|
</html>
|