Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
application
/
views
/
student
✏️
Editing: stripe.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"> <style type="text/css"> .table2 tr.border_bottom td { box-shadow: none; border-radius: 0; border-bottom: 1px solid #e6e6e6; } .table2 td { padding-bottom: 3px; padding-top: 6px; } .title{ color: #0084B4; font-weight: 600 !important; font-size: 15px !important;; display: inline; } .product-description { display: block; color: #999; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .text-fine{ color: #bf4f4d; } </style> </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> <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> <div class="padd2 paddtzero"> <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> <?php foreach ($student_fees_master_array as $fees_key => $fees_value) { ?> <tr> <td> <span class="title"><?php echo $fees_value['fee_group_name'] ?></span> <span class="product-description"> <?php echo $fees_value['fee_type_code']; ?> </span> </td> <td class="text-right"><?php echo $setting[0]['currency_symbol'] . number_format((float) $fees_value['amount_balance'], 2, '.', ''); ?></td> </tr> <tr class="border_bottom"> <td> <span class="text-fine"><?php echo $this->lang->line('fine'); ?></span></td> <td class="text-right"><?php echo $setting[0]['currency_symbol'] . number_format((float) $fees_value['fine_balance'], 2, '.', ''); ?></td> </tr> <?php } ?> <tr class="bordertoplightgray"> <td colspan="2" class="text-right"><?php echo $this->lang->line('total');?>: <?php echo $setting[0]['currency_symbol'] . number_format((float)($params['fine_amount_balance']+$params['total']), 2, '.', ''); ?></td> </tr> </table> <div class="divider"></div> <form class="paddtlrb" action="<?php echo site_url('students/stripe/complete'); ?>" method="POST"> <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> <script src="https://checkout.stripe.com/checkout.js" class="stripe-button pull-right" data-key="<?php echo $params['api_publishable_key']; ?>" data-amount="<?php echo ((number_format((float)($params['fine_amount_balance']+$params['total']), 2, '.', '')) * 100); ?>" data-name="<?php echo $setting[0]['name']; ?>" data-description="<?php echo 'Online fees deposit'; ?>" data-image="<?php echo base_url('uploads/school_content/logo/' . $setting[0]['image']); ?>" data-locale="auto" data-zip-code="true" data-currency="<?php echo $params['invoice']->currency_name; ?>" > </script> <input type="hidden" name="student_id" value="<?php echo $params['student_id']; ?>"> <input type="hidden" name="total" value="<?php echo (number_format((float)($params['fine_amount_balance']+$params['total']), 2, '.', '')); ?>"> </form> </div> </div> </div> </div> </div> </div> </body> </html>
💾 Save Changes
❌ Cancel