ok

Mini Shell

Direktori : /home2/selectio/www/geniusgroove.in/crm/api/application/views/payment/razorpay/
Upload File :
Current File : //home2/selectio/www/geniusgroove.in/crm/api/application/views/payment/razorpay/razorpay - Copy.php

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta name="theme-color" content="#424242" />
        <title>School Management System</title>
        <link rel="stylesheet" href="<?php echo base_url(); ?>backend/bootstrap/css/bootstrap.min.css"> 
        <link rel="stylesheet" href="<?php echo base_url(); ?>backend/dist/css/font-awesome.min.css"> 
        <link rel="stylesheet" href="<?php echo base_url(); ?>backend/dist/css/style-main.css"> 

    </head>
    <body style="background: #ededed;">
        <div class="container">
            <div class="row">
                <div class="paddtop20">
                    <div class="col-md-8 col-md-offset-2 text-center">

                        <img src="<?php echo base_url('uploads/school_content/logo/' . $setting[0]['image']); ?>">

                    </div>
                    <?php echo validation_errors(); ?>
                    <div class="col-md-6 col-md-offset-3 mt20">
                        <div class="paymentbg">
                            <div class="invtext"><?php echo $this->lang->line('fees_payment_details'); ?> </div>
                            <br>
                            <?php if ($api_error) {
                                ?>
                                <div class="alert alert-danger"><?php print_r($api_error); ?> </div>
                            <?php }
                            ?>


                            <div class="padd2 paddtzero">
                                <form action="<?php echo base_url(); ?>students/paystack/paystack_pay" method="post">
                                    <table class="table2" width="100%">
                                        <tr>
                                            <th><?php echo $this->lang->line('description'); ?></th>
                                            <th class="text-right"><?php echo $this->lang->line('amount') ?></th>
                                        </tr>
                                        <tr>
                                            <td> <?php
                                                echo $params['payment_detail']->fee_group_name . "<br/><span>" . $params['payment_detail']->code;
                                                ?></span></td>
                                            <td class="text-right"><?php echo $setting[0]['currency_symbol'] . $params['total']; ?></td>
                                        </tr>

                                        <tr class="bordertoplightgray">
                                            <td  bgcolor="#fff"> <?php echo $this->lang->line('total'); ?>:</td>
                                            <td  bgcolor="#fff" class="text-right"> <?php echo $setting[0]['currency_symbol'] . $params['total']; ?></td>
                                        </tr>

                                        <hr>
                                        <tr class="bordertoplightgray">
                                            <td  bgcolor="#fff"><button type="button" onclick="window.history.go(-1); return false;" name="search"  value="" class="btn btn-info"><i class="fa fa fa-chevron-left"></i> <?php echo $this->lang->line('back'); ?> </button>  </td>
                                            <td  bgcolor="#fff" class="text-right"> <button type="button" onclick="pay()" name="search"  value="" class="btn btn-info"><i class="fa fa fa-chevron-right"></i> <?php echo $this->lang->line('pay_with_razorpay'); ?></button>  </td>
                                        </tr>
                                    </table>


                                </form>

                            </div>
                        </div>
                    </div>
                </div>  
            </div>
        </div>
    </body>
</html>

<script src="https://checkout.razorpay.com/v1/checkout.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> 
<script>
                                                var SITEURL = "<?php echo base_url() ?>";

                                                function pay(e) {
                                                    var totalAmount = <?php echo $total; ?>;
                                                    var product_id = <?php echo $merchant_order_id; ?>;
                                                    var options = {
                                                        "key": "<?php echo $key_id; ?>",
                                                        "amount": "<?php echo $total; ?>", // 2000 paise = INR 20
                                                        "name": "<?php echo $name; ?>",
                                                        "description": "<?php echo $title; ?>",
                                                        "currency": "<?php echo $currency_code; ?>",
                                                        "image": "<?php echo base_url(); ?>../uploads/school_content/admin_small_logo/<?php $this->setting_model->getAdminsmalllogo(); ?>",
                                                                    "callback_url": SITEURL + 'gateway/razorpay/callback',
                                                                    "redirect": true,
                                                                    "handler": function (response) {



                                                                    },

                                                                    "theme": {
                                                                        "color": "#528FF0"
                                                                    }
                                                                };
                                                                var rzp1 = new Razorpay(options);
                                                                rzp1.open();

                                                            }
                                                            ;

</script>

Zerion Mini Shell 1.0