32 lines
		
	
	
		
			845 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			845 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 id="form-add-name" type="text" placeholder="Name" />
 | 
						|
    <input id="form-add-phone" type="text" placeholder="Phone" />
 | 
						|
    <button type="button" onclick="buttonAdd()">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>
 |