93 lines
3.8 KiB
PHP
93 lines
3.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">
|
|
<form class="form-horizontal" action="/member/confirmwithdraw" method='POST'>
|
|
<input type="hidden" name="recipientid" value="<?php echo $recipient_account; ?>">
|
|
<div class="panel-heading">
|
|
<div class="row">
|
|
<div class="col-md-10 col-md-offset-1">
|
|
<h5 class="panel-title">Confirm Withdraw to Account</h5>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
<div class="row">
|
|
|
|
</div>
|
|
<div class="col-md-10 col-md-offset-1">
|
|
<div class="form-group">
|
|
<label class="col-lg-3 control-label"> Amount:</label>
|
|
<div class="col-lg-9">
|
|
<input name ="amount" type="text" class="form-control" placeholder="Amount to withdraw" value="<?php echo $amount; ?>" readonly>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="col-lg-3 control-label">Recipient Acc:</label>
|
|
<div class="col-lg-9">
|
|
<?php echo $recipient_account_combo; ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="col-lg-3 control-label">Processing Fee:</label>
|
|
<div class="col-lg-9">
|
|
<input name ="fee" type="text" class="form-control" placeholder="Processing fee" value="<?php echo $fee*0.01; ?>" readonly >
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
<label class="col-lg-3 control-label"> Total :</label>
|
|
<div class="col-lg-9">
|
|
<input name ="total" type="text" class="form-control" placeholder="Total" value="<?php echo $total*0.01; ?>" readonly >
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
<label class="col-lg-3 control-label"> Comment/Note :</label>
|
|
<div class="col-lg-9">
|
|
<input name="comment" type="text" class="form-control" placeholder="Comment" value="<?php echo $comment; ?>" readonly >
|
|
</div>
|
|
</div>
|
|
|
|
<div class="text-right">
|
|
<button type="submit" class="btn btn-primary">Complete <i class="icon-arrow-right14 position-right"></i></button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<!-- /marketing campaigns -->
|
|
</div>
|
|
|
|
|