75 lines
2.8 KiB
PHP
75 lines
2.8 KiB
PHP
<!-- Main content -->
|
|
<div class="content-wrapper">
|
|
|
|
<?php include('common/userstrip.php'); ?>
|
|
|
|
<!-- Marketing campaigns -->
|
|
<div class="panel panel-flat">
|
|
<div class="row">
|
|
<div class="col-lg-6">
|
|
<div class="panel-heading">
|
|
<h4 class="no-margin">Account Balance :<? echo money_format('%i', $current_balance * 0.01); ?> Naira</h4>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="panel-heading">
|
|
<h5 class="no-margin">Escrow Balance :<? echo money_format('%i', $escrow_balance * 0.01); ?> Naira</h5>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /marketing campaigns -->
|
|
|
|
<!-- Marketing campaigns -->
|
|
<div class="panel panel-flat">
|
|
<div class="panel-heading">
|
|
|
|
|
|
<div class="panel-heading">
|
|
<div class="row">
|
|
<div class="col-md-10 col-md-offset-1">
|
|
<h5 class="panel-title">Withdraw Confirmation</h5>
|
|
|
|
<table class='table table-striped table-hover table-bordered table-condensed'>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<td style='width: 120px;'>Amount Received:</td><td><?php echo $amount * 0.01; ?> Naira </td>
|
|
</tr>
|
|
<tr>
|
|
<td style='width: 120px;'>Processing Fee:</td><td><?php echo $fee * 0.01; ?> Naira </td>
|
|
</tr>
|
|
<tr>
|
|
<td style='width: 120px;'>Recipient:</td><td><?php echo $rec_firstname;?> <?php echo $rec_lastname;?> </td>
|
|
</tr>
|
|
<tr>
|
|
<td style='width: 120px;'>Account No:</td><td><?php echo $account_no; ?> </td>
|
|
</tr>
|
|
<tr>
|
|
<td style='width: 120px;'>Bank:</td><td><?php echo $bank_name; ?> </td>
|
|
</tr>
|
|
<tr>
|
|
<td style='width: 120px;'>Confirmation No:</td><td><?php echo $confirmation; ?> </td>
|
|
</tr>
|
|
<tr>
|
|
<td style='width: 120px;'></td><td><?php echo $sendmoney_message;?> </td>
|
|
</tr>
|
|
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|