Files
WrenchBoardDocker/application/views/users/view_addfund.php
T
2021-10-09 21:59:14 -04:00

147 lines
4.3 KiB
PHP

<!-- Main content -->
<div class="content-wrapper">
<?php include('common/userstrip.php'); ?>
<!-- Marketing campaigns -->
<div class="panel panel-flat">
<div class="panel-heading">
<h5 class="panel-title">Add Credit to your Account</h5>
</div>
</div>
<!-- Main charts -->
<div class="row">
<div class="col-lg-12">
</div>
</div>
<!-- /main charts -->
<div class="row">
<div class="col-lg-9 col-sm-6">
<div class="thumbnail">
<?php echo $txt_detail; ?>
<!-- div class="thumb">
<img src="/assets/images/comingsoon.jpg" alt="Refer A Friend">
</div -->
</div>
<div class="panel panel-flat">
<div class="panel-heading">
<div class="row">
<div class="col-lg-6">
Credit Your Account With PayPal<SUP>TM</SUP>
<form name="pp" action="/member/paypal" method="POST">
<div class="form-group">
<label for="sel1">Amount:</label>
<select class="form-control" id="sel1" name="D1" onchange="checkAmountPaypal(this.value);">
<option>Select Amount..</option>
<?php
for ($i=2; $i<5; $i++)
{
$nairaval = $i*2000;
$dollarval = ($nairaval/370)*(1.015);
echo "<option value='".$dollarval."' selected>".$nairaval." Naira for $". sprintf ("%.2f",$dollarval)."</option>";
}
?>
</select>
<span class="input-group-btn">
<input name="B1" type="submit" class="btn btn-primary" value="Continue"/>
</span>
</div>
</form>
</div>
<div class="col-lg-6">
<div class="alert alert-info no-border"> You will be transferred to the Paypal website to complete this transaction.
<p>
You will require an existing Paypal account to complete this transaction.</div>
<p><div class="alert alert-danger no-border">PLEASE DO NOT CLOSE THE PAYPAL PAGE AFTER PAYMENT IS COMPLETED, you will be automatically re-directed back to your WrenchBoard account once payment is approved. If you close the page before this, your payment may not be properly credited.</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="thumbnail">
<div class="thumb">
<img src="/assets/images/howitworks_dash.png" alt="Your Page">
</div>
<div class="caption">
<h6 class="no-margin-top text-semibold"><a href="#" class="text-default">How it Works</a> <a href="#" class="text-muted"></a></h6>
See how to create projects, offer and manage project on WrenchBoard
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
</div>
</div>
</div>
<!-- /main content -->