ok
Direktori : /home2/selectio/www/geniusgroove.in/crm/api/application/views/course_payment/instamojo/ |
Current File : /home2/selectio/www/geniusgroove.in/crm/api/application/views/course_payment/instamojo/index.php |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Instamojo Pay Custom Integration</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css"> <link rel="stylesheet" href="<?php echo base_url(); ?>backend/dist/css/style-api.css"> </head> <body> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="paybox"> <div class="paybox_bg"> <h3 class="bt_title"><img src="<?php echo base_url(); ?>/backend/images/instamojo.png" ><span>Instamojo Payment Gateway</span></h3> <div class="paybody"> <div class="paymentbg"> <div class="invtext">Course Purchase Details</div> <div class="paddtzero"> <form action="<?php echo base_url(); ?>course_payment/Instamojo/insta_pay" method="post"> <?php if(!empty($params['course_thumbnail'])){?> <div class="img-container"> <img src="<?php echo $this->customlib->getCourseThumbnailPath($params['course_thumbnail']); ?>" class="img-responsive center-block"> </div> <?php }?> <table class="table mb0 paytable"> <tr> <td class="bmedium text-center pb20"> <?php echo $params['course_name']; ?> </td> </tr> <tr> <td class="bmedium text-center"> <input type="text" name="phone" placeholder="Phone" class="form-control" value="<?php echo $params['contact_no']; ?>"> <span class="error"><?php echo form_error('phone'); ?></span> </td> </tr> <tr> <td class="bmedium text-center"> <input type="email" name="email" placeholder="Email" class="form-control" value="<?php echo $params['email']; ?>"> <span class="error"><?php echo form_error('email'); ?></span> </td> </tr> <tr><td> <?php if ($api_error) { ?> <div class="alert alert-danger"><?php echo "<pre>"; print_r($api_error); ?> </div> <?php } ?></td> </tr> <tr class="paybtngray"> <td><button type="submit" name="search" value="" class="btn btn-info buttondarkgray">Pay With Instamojo <span class="bolds"><?php if(!empty($params['total_amount'])){ echo amountFormat($params['total_amount']);}else{echo '0.00';} ?></span></button></td> </tr> </table> </form> </div> </div> </div> </div><!--./paybox--> </div><!--./paybox_bg--> </div><!--./col-md-12--> </div><!--./row--> </div><!--./container--> </body> </html>