19 lines
745 B
PHP
19 lines
745 B
PHP
<html>
|
|
<head></head>
|
|
<body>
|
|
<form id="form" class="form-" action="<?php echo site_url('cart/check_out_conv');?>" method="post" name="fo1">
|
|
<input type="text" placeholder="Nama" name="nama"><br/>
|
|
<input type="text" placeholder="Email" name="email"><br/>
|
|
<input type="text" placeholder="Alamat" name="alamat"><br/>
|
|
<input type="text" placeholder="Kota/Kab" name="kota"><br/>
|
|
<input type="text" placeholder="Provinsi" name="prov"><br/>
|
|
<input type="text" placeholder="Telp" name="telp"><br/>
|
|
Total Belanja = <?php echo $this->cart->total();?><br />
|
|
<select name="cara_bayar">
|
|
<option value="1">Transfer</option>
|
|
<option value="1">Cash</option>
|
|
</select><br/>
|
|
<input type="hidden" name="tipe" value="online"><br/>
|
|
<button>OK</button>
|
|
</body>
|
|
</html>
|