23 lines
1.2 KiB
PHP
23 lines
1.2 KiB
PHP
<div class="table-responsive">
|
|
<button type="button" class="btn btn-sm btn-success btn_plus">Tambah Data</button>
|
|
<table id="tbl_family" class="table table-striped jambo_table bulk_action" style="width:100%;">
|
|
<thead>
|
|
<tr class="headings">
|
|
<!-- <th><input type="checkbox" id="check-all" class="flat"></th> -->
|
|
<th>Nama</th>
|
|
<th>Tgl Lahir</th>
|
|
<th>Hubungan Keluarga</th>
|
|
<th>Aksi</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<!-- <td class="a-center"><input type="checkbox" class="flat" name="table_records"></td> -->
|
|
<td><input type="text" name="family[nama][]" placeholder="Nama" class="form-control family_name"></td>
|
|
<td><input type="text" name="family[tgl_lahir][]" placeholder="Tanggal Lahir" class="form-control indo_date family_birth_date"></td>
|
|
<td><input type="text" name="family[hubungan][]" placeholder="Hubungan Keluarga" class="form-control family_spouse"></td>
|
|
<td><button class="btn_minus" type="button"><i class="fa fa-minus"></i></button></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div> |