| 12694 |
anikendra |
1 |
<?php //print_r($shippingmethod_process);?>
|
|
|
2 |
<div class="checkout-login">
|
|
|
3 |
<h2 class="font16 bold">
|
|
|
4 |
Sign In
|
|
|
5 |
<div class="edit-btn"></div>
|
|
|
6 |
</h2>
|
|
|
7 |
</div>
|
|
|
8 |
|
|
|
9 |
<div class="checkout-shipping">
|
|
|
10 |
<h2 class="font16 bold ">
|
|
|
11 |
Shipping Address
|
|
|
12 |
<div class="edit-btn"></div>
|
|
|
13 |
</h2>
|
|
|
14 |
</div>
|
|
|
15 |
|
|
|
16 |
<div class="checkout-payment">
|
|
|
17 |
<h2 class="font16 bold selected">
|
|
|
18 |
Shipping Method
|
|
|
19 |
<div class="edit-btn"></div>
|
|
|
20 |
</h2>
|
|
|
21 |
<form name="shippingMethod" action='<?=base_url()?>checkout/shippingmode' method="Post">
|
|
|
22 |
<div class="ck-payment-sub">
|
|
|
23 |
<?php foreach ($shippingmethod_process as $value) {?>
|
|
|
24 |
<input type="radio" name="shippingMethod" id="bank-tf" onclick="getShippingValue(this.value)" value="<?php echo $value['code'];?>"/><label for="bank-tf" class="custom-label font12"><?php echo $value['title']." Rs ".$value['price']; ?></label>
|
|
|
25 |
<div class="clear"></div>
|
|
|
26 |
|
|
|
27 |
<?php } ?>
|
|
|
28 |
<div class="clear"></div>
|
|
|
29 |
<button class="btn gold checkout-continue font14 bold mtb5" type="submit" disabled="true" name="submit" id="shipping-btn"> Continue </button>
|
|
|
30 |
<a class="btn gold font14 bold mtb5" href="<?=base_url()."checkout/shipping"?>"> Back </a>
|
|
|
31 |
</div>
|
|
|
32 |
</form>
|
|
|
33 |
</div>
|
|
|
34 |
<div class="checkout-billing">
|
|
|
35 |
<h2 class="font16 bold ">
|
|
|
36 |
Payment Method
|
|
|
37 |
<div class="edit-btn"></div>
|
|
|
38 |
</h2>
|
|
|
39 |
</div>
|
|
|
40 |
<div class="checkout-billing">
|
|
|
41 |
<h2 class="font16 bold ">
|
|
|
42 |
Review
|
|
|
43 |
<div class="edit-btn"></div>
|
|
|
44 |
</h2>
|
|
|
45 |
</div>
|