Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /var/www/serbaantik.com/public_html/naavya/ |
Upload File : |
<?php include('header.php') ?> <!-- Page Banner Section Start --> <div style="padding-bottom:0" class="page-banner-section section bg-image" data-bg="./assets/images/bg/breadcrumb.jpg"> <div class="container"> <div class="row"> <div class="col"> <div class="page-banner text-center pt-lg-80"> <h2>Shopping Cart</h2> <ul class="page-breadcrumb"> <li><a href="index.php">Home</a></li> <li>Shopping Cart</li> </ul> </div> </div> </div> </div> </div> <!-- Page Banner Section End --> <!--Cart section start--> <div class="cart-section section pt-100 pt-lg-50 pt-md-70 pt-sm-60 pt-xs-50 "> <div class="container sb-border pb-70 pb-lg-50 pb-md-40 pb-sm-30 pb-xs-20"> <div class="row"> <div class="col-12"> <!-- Cart Table --> <div class="cart-table table-responsive mb-30"> <table class="table"> <thead> <tr> <th class="pro-thumbnail">Image</th> <th class="pro-title">Product</th> <th class="pro-price">Price</th> <th class="pro-quantity">Quantity</th> <th class="pro-subtotal">Total</th> <th class="pro-remove">Remove</th> </tr> </thead> <tbody> <tr> <td class="pro-thumbnail"><a href="#"><img src="assets/images/product/product1.jpg" alt="Product"></a></td> <td class="pro-title"><a href="#">Pinch Pleat</a></td> <td class="pro-price"><span>Rp 500.000</span></td> <td class="pro-quantity"><div class="pro-qty"><input type="number" value="1"></div></td> <td class="pro-subtotal"><span>Rp 500.000</span></td> <td class="pro-remove"><a href="#"><i class="fa fa-trash-o"></i></a></td> </tr> <tr> <td class="pro-thumbnail"><a href="#"><img src="assets/images/product/product2.jpg" alt="Product"></a></td> <td class="pro-title"><a href="#">Box Pleat</a></td> <td class="pro-price"><span>Rp 500.000</span></td> <td class="pro-quantity"><div class="pro-qty"><input type="number" value="1"></div></td> <td class="pro-subtotal"><span>Rp 500.000</span></td> <td class="pro-remove"><a href="#"><i class="fa fa-trash-o"></i></a></td> </tr> <tr> <td class="pro-thumbnail"><a href="#"><img src="assets/images/product/product3.jpg" alt="Product"></a></td> <td class="pro-title"><a href="#">Goblet Pleat</a></td> <td class="pro-price"><span>Rp 500.000</span></td> <td class="pro-quantity"><div class="pro-qty"><input type="number" value="1"></div></td> <td class="pro-subtotal"><span>Rp 500.000</span></td> <td class="pro-remove"><a href="#"><i class="fa fa-trash-o"></i></a></td> </tr> </tbody> </table> </div> <div class="row"> <div class="col-lg-6 col-12 mb-5"> <!-- Discount Coupon --> <div class="discount-coupon"> <h4>Discount Coupon Code</h4> <form action="#"> <div class="row"> <div class="col-md-6 col-12 mb-25"> <input type="text" placeholder="Coupon Code"> </div> <div class="col-md-6 col-12 mb-25"> <button class="btn">Apply Code</button> </div> </div> </form> </div> </div> <!-- Cart Summary --> <div class="col-lg-6 col-12 mb-30 d-flex"> <div class="cart-summary"> <div class="cart-summary-wrap"> <h4>Cart Summary</h4> <p>Sub Total <span>Rp 1.500.000</span></p> <p>Discount <span>-</span></p> <h2>Grand Total <span>Rp 1.500.000</span></h2> </div> <div class="cart-summary-button"> <a href="checkout.php"><button class="btn">Checkout</button></a> </div> </div> </div> </div> </div> </div> </div> </div> <!--Cart section end--> <?php include('footer.php') ?>