widuri-client/index.html

32 lines
861 B
HTML
Raw Permalink Normal View History

2025-06-10 10:28:59 +07:00
<html>
<head>
<title>Widuri Client</title>
2025-06-10 10:47:55 +07:00
<link rel="stylesheet" href="//cdn.datatables.net/2.3.2/css/dataTables.dataTables.min.css">
2025-06-10 10:28:59 +07:00
</head>
<body>
2025-06-17 10:46:25 +07:00
<input id="form-add-name" type="text" placeholder="Name" />
<input id="form-add-phone" type="text" placeholder="Phone" />
<button id="button-add" type="button" onclick="buttonAdd()">Create</button>
<hr>
2025-06-10 10:47:55 +07:00
<table id="table-list">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Phone</th>
<th>Act</th>
2025-06-10 10:47:55 +07:00
</tr>
</thead>
2025-06-10 10:28:59 +07:00
2025-06-10 10:47:55 +07:00
<tbody></tbody>
2025-06-10 10:28:59 +07:00
</table>
2025-06-10 10:47:55 +07:00
<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>
2025-06-10 10:28:59 +07:00
<script src="js/carrack.js"></script>
2025-06-10 11:14:55 +07:00
<script src="js/data.js"></script>
2025-06-10 10:47:55 +07:00
2025-06-10 10:28:59 +07:00
</body>
</html>