?
Current Path : /home1/savoy/public_html/savoyglobal.net/cocorico/application/views/hr/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/cocorico/application/views/hr/payment_method.php |
<?php $this->load->view('documentreadyfunctions'); //$this->load->view('commonfunctions'); ?> <div class="row-fluid"> <div class="tab-pane " id="tab_2"> <div class="portlet box blue"> <div class="portlet-title"> <div class="caption"><i class="icon-reorder"></i>Payment Details</div> </div> <div class="portlet-body form"> <table class="table table-striped table-hover table-bordered"> <?php if ($payment_type == 2) { ?> <tr> <th width="40%">Cheque No</th> <th width="40%">Cheque Date</th> <th>Cheque Info</th> </tr> <tr> <td> <input type="text" name="cheque_no" id="cheque_no" class="required num_only" /> </td> <td> <input type="dateonly" name="cheque_date" id="cheque_date" class="required calfocus" /> </td> <td> <textarea name="cheque_info" id="cheque_info"></textarea> </td> </tr> <?php } if ($payment_type == 3) { ?> <tr> <th>Credit Card Holder Name</th> <th>Credit Card No</th> </tr> <tr> <td> <input class="required " type="text" name="holder_name" id="holder_name"/> <div style="padding: 0 5px;width:127px;display: block;height: 9px;"> <!-- <span style="color: red;" id="cheque_no_date"></span></div>--> </td> <td> <input class="w_90 required " type="text" name="card_no" id="card_no" /><br/> <div style="color: red;padding: 0 5px;width:200px;display: block;height: 25px;"> <!-- <span id="cheque_no_info"></span></div>--> </td> </tr> <?php } if ($payment_type == 3) { ?> <tr> <th>Description</th> <td> <textarea name="bank_transfer_description" id="bank_transfer_description" style="width:250px;"></textarea> </td> </tr> <?php } ?> </table> </div> </div> </div> </div>