19 lines
734 B
PHP
19 lines
734 B
PHP
|
|
||
|
<form action="<?php echo base_url().'api/barang/add_barang' ?> " method="post">
|
||
|
<table class="add" cellspacing="20">
|
||
|
<tr>
|
||
|
<td>Nama Barang</td>
|
||
|
<td colspan="3"><input type="text" name="nama_barang" value="" class="input"/></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>Harga</td>
|
||
|
<td colspan="3"><input type="text" name="harga" value="" class="input"/></td>
|
||
|
</tr>
|
||
|
<tr><td></td>
|
||
|
<td></td>
|
||
|
<td><input type="submit" name="submit" value="Simpan"/></td>
|
||
|
<td><button type="button" name="Cancel" value="OK">Cancel</button></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|