File Manager
Viewing File: withdraw-request.php
<?php
include('auth.php')
?>
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<link href="db_files/css.css" rel="stylesheet">
<!-- font-family: 'Open Sans', sans-serif; -->
<link href="db_files/bootstrap.css" rel="stylesheet" type="text/css">
<link href="db_files/custom.css" rel="stylesheet" type="text/css">
<link href="db_files/default.css" rel="stylesheet" type="text/css">
<link href="db_files/tab.css" rel="stylesheet" type="text/css">
<title><?= $_SESSION['SITE-NAME'] ?> | Withdraw Method</title>
<!--Favicon add-->
<link rel="stylesheet" type="text/css" href="min.css">
<link rel="stylesheet" type="text/css" href="index.css">
<!-- Fire UI Javascript -->
<script src="min.js"></script>
<link rel="shortcut icon" href="<?= $_SESSION['SITE-ICON'] ?>">
<script async="" src="db_files/app.js" charset="UTF-8" crossorigin="*"></script><script async="" src="db_files/default.js" charset="UTF-8" crossorigin="*"></script><script src="db_files/jquery.js" type="text/javascript"></script>
<script src="db_files/setting2.js" type="text/javascript"></script>
<script src="db_files/tab.js" type="text/javascript"></script>
<script src="db_files/bootstrap.js" type="text/javascript"></script>
</head>
<body class="loginarea">
<div class="wrapper-account">
<div class="headerContainer">
<div class="headerInner"> <a href="#" id="logo"></a>
<div class="hdRight">
<div class="mainNavRight">
<div class="navbar">
<div class="navbar-inner">
<ul class="nav">
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="inside_inner_account">
<div class="member_wrap">
<div class="membersidebar">
<ul>
<li><a href="dashboard">My Account</a></li><li><a href="edit-profile">Edit Account</a></li><li><a href="deposit-fund">Deposits</a></li><li><a href="deposit-history">Deposits History</a></li><li><a href="withdraw-request">Withdraw</a></li><li><a href="withdraw-log">Withdrawals History</a></li><li><a href="dashboard">Referrals</a></li><li><a href="logout" onclick="event.preventDefault();
document.getElementById('logout-form').submit();">Logout</a></li>
<form id="logout-form" action="logout" method="POST" style="display: none;">
<input type="hidden" name="_token" value="JeV2HFKu2zNlYEjqf4iBhqUqYRRXnTVbWim7vmep">
</form>
</ul>
</div>
<div class="member-container">
<div class="account_top">
</div>
<div class="member_right">
<h3 class="account_main">Withdraw Funds</h3>
<div class="withdraw">
<table class="tab" cellspacing="0" cellpadding="2" border="0">
<tbody><tr>
<th>Account Balance:</th>
<th><?php echo $_SESSION['varcurrency']; ?><b><?php echo $_SESSION['varbal']; ?></b></th>
</tr>
<tr><td> </td>
<td> <small>
</small></td>
</tr>
<tr>
<td>Pending Withdrawals: </td>
<td><?php echo $_SESSION['varcurrency']; ?><b><?php echo $_SESSION['varpwithdrawal']; ?></b></td>
</tr>
<tr>
<td>Your Bitcoin Account:</td>
<td><a href="edit-profile"><?php echo $_SESSION['varownwallet']; ?> </a></td>
</tr>
<tr>
<td align="center" colspan="2"><font size="4" color="red"><b>Please note</b> that withdrawal request above your account balance will be voided</font></td>
</tr>
<tr>
<td align="center" colspan="2"><font color="yellow" size="5">Choose your prefered withdrawal method below</font></td>
</tr>
</tbody></table>
<div id="form">
<div className="centeredForm">
<div class="box theme-reverse">
<div class="box">
<div class="tab" data-tab="formTab">
<button class="tab-btn btn-dark" data-content="btc"><img src="btc.png" height="25" width="25">Crypto</button>
<button class="tab-btn btn-dark" data-content="cashapp"><img src="cashapp.png" height="25" width="25">Cashapp</button>
<button class="tab-btn btn-dark" data-content="paypal"><img src="paypal.png" height="25" width="25">PayPal</button>
<button class="tab-btn btn-dark" data-content="zelle"><img src="zelle.png" height="25" width="25">Zelle</button>
<button class="tab-btn btn-dark" data-content="venmo"><img src="venmo.png" height="25" width="25">Venmo</button>
<button class="tab-btn btn-dark" data-content="bank"><img src="bank.png" height="25" width="25">Bank account</button>
</div>
<div class="tab-contents" id="formTab">
<div id="btc" class="tab-content tab-content-active">
<form method="post" name="withdrawal_form" action="wconfirm">
<input type="hidden" value="<?php echo $_SESSION['varuname']; ?>" name="username">
<input type="hidden" value="btcwallet" name="method">
<div class="form-group form-animate">
<label for="login-username" class="form-label">Select Crypto</label>
<input type="radio" name="coin" value="USDT" class="input-animate" id="login-username" required/> USDT
<input type="radio" name="coin" value="Bitcoin" class="input-animate" id="login-username" required/> Bitoin
<input type="radio" name="coin" value="BitcoinCash" class="input-animate" id="login-username" required/> BitoinCash
<input type="radio" name="coin" value="Etherum" class="input-animate" id="login-username" required/> Etherum
<input type="radio" name="coin" value="Litecoin" class="input-animate" id="login-username" required/> Litecoin
<input type="radio" name="coin" value="Dogecoin" class="input-animate" id="login-username" required/> Dogecoin
<input type="radio" name="coin" value="Ripple" class="input-animate" id="login-username" required/> Ripple
</div>
<div class="form-group form-animate">
<label for="login-username" class="form-label">Recipient wallet address</label>
<input type="text" value="<?php echo $_SESSION['varownwallet']; ?>" class="input-animate" id="login-username" name="ownwallet" required/>
</div>
<div class="form-group form-animate">
<label for="login-username" class="form-label">Amount</label>
<input type="text" name="amount" placeholder="00.00" value="00.00" class="inpts" size="15" style="text-align:left;" required/>
</div>
<div class="form-group">
<center><font color="white" size="5">Ensure you provide a correct bitcoin <b>Wallet Address</b> to avoid delayed admin confirmation</font>
<br />
<input type="submit" value="Withdraw Funds" class="sbmt"></center>
</div>
</form>
</div>
<div id="cashapp" class="tab-content">
<form method="post" name="withdrawal_form" action="wconfirm">
<input type="hidden" value="<?php echo $_SESSION['varuname']; ?>" name="username">
<input type="hidden" value="Cashapp" name="method">
<div class="form-group form-animate">
<label for="login-username" class="form-label">$Cashtag</label>
<input type="text" class="input-animate" name="tag" id="login-username" required autocomplete="username" required/>
</div>
<div class="form-group form-animate">
<label for="login-username" class="form-label">Amount</label>
<input type="text" name="amount" placeholder="00.00" value="00.00" class="inpts" size="15" style="text-align:left;" required/>
</div>
<div class="form-group">
<center><font color="white" size="5">Ensure you provide a valid <b>TAG</b> to avoid delayed admin confirmation</font>
<br />
<input type="submit" value="Withdraw Funds" class="sbmt"></center>
</div>
</form>
</div>
<div id="paypal" class="tab-content">
<form method="post" name="withdrawal_form" action="wconfirm">
<input type="hidden" value="<?php echo $_SESSION['varuname']; ?>" name="username">
<input type="hidden" value="PayPal" name="method">
<div class="form-group form-animate">
<label for="login-username" class="form-label">Email</label>
<input type="text" class="input-animate" name="email" id="login-username" required autocomplete="username" required/>
</div>
<div class="form-group form-animate">
<label for="login-username" class="form-label">Amount</label>
<input type="text" name="amount" placeholder="00.00" value="00.00" class="inpts" size="15" style="text-align:left;" required/>
</div>
<div class="form-group">
<center><font color="white" size="5">Ensure you provide a valid paypal <b>Email Address</b> to avoid delayed admin confirmation</font>
<br />
<input type="submit" value="Withdraw Funds" class="sbmt"></center>
</div>
</form>
</div>
<div id="zelle" class="tab-content">
<form method="post" name="withdrawal_form" action="wconfirm">
<input type="hidden" value="<?php echo $_SESSION['varuname']; ?>" name="username">
<input type="hidden" value="Zelle" name="method">
<div class="form-group form-animate">
<label for="login-username" class="form-label">Email</label>
<input type="text" class="input-animate" name="email" id="login-username" required autocomplete="username" required/>
</div>
<div class="form-group form-animate">
<label for="login-username" class="form-label">Amount</label>
<input type="text" name="amount" placeholder="00.00" value="00.00" class="inpts" size="15" style="text-align:left;" required/>
</div>
<div class="form-group">
<center><font color="white" size="5">Ensure you provide a valid zelle <b>Email Address</b> to avoid delayed admin confirmation</font>
<br />
<input type="submit" value="Withdraw Funds" class="sbmt"></center>
</div>
</form>
</div>
<div id="venmo" class="tab-content">
<form method="post" name="withdrawal_form" action="wconfirm">
<input type="hidden" value="<?php echo $_SESSION['varuname']; ?>" name="username">
<input type="hidden" value="venmo" name="method">
<div class="form-group form-animate">
<label for="login-username" class="form-label">Email</label>
<input type="text" class="input-animate" name="email" id="login-username" required autocomplete="username" required/>
</div>
<div class="form-group form-animate">
<label for="login-username" class="form-label">Amount</label>
<input type="text" name="amount" placeholder="00.00" value="00.00" class="inpts" size="15" style="text-align:left;" required/>
</div>
<div class="form-group">
<center><font color="white" size="5">Ensure you provide a valid Venmo <b>Email Address</b> to avoid delayed admin confirmation</font>
<br />
<input type="submit" value="Withdraw Funds" class="sbmt"></center>
</div>
</form>
</div>
<div id="bank" class="tab-content">
<form method="post" name="withdrawal_form" action="wconfirm">
<input type="hidden" value="<?php echo $_SESSION['varuname']; ?>" name="username">
<input type="hidden" value="Bank" name="method">
<div class="form-group form-animate">
<label for="login-username" class="form-label">Bank Account Number</label>
<input type="text" class="input-animate" name="accno" id="login-username" required autocomplete="username" required/>
</div>
<div class="form-group form-animate">
<label for="login-username" class="form-label">Beneficiary Name</label>
<input type="text" class="input-animate" name="accname" id="login-username" required autocomplete="username" required/>
</div>
<div class="form-group form-animate">
<label for="login-username" class="form-label">Bank Name</label>
<input type="text" class="input-animate" name="accbank" id="login-username" required autocomplete="username" required/>
</div>
<div class="form-group form-animate">
<label for="login-username" class="form-label">Bank Account Type</label>
<input type="text" class="input-animate" name="acctype" id="login-username" required autocomplete="username" required/>
</div>
<div class="form-group form-animate">
<label for="login-username" class="form-label">Routing/Swift</label>
<input type="text" class="input-animate" name="accswift" id="login-username" required autocomplete="username" required/>
</div>
<div class="form-group form-animate">
<label for="login-username" class="form-label">Amount</label>
<input type="text" name="amount" placeholder="00.00" value="00.00" class="inpts" size="15" style="text-align:left;" required/>
</div>
<div class="form-group">
<center><font color="white" size="5">Ensure you provide your correct Bank<b>Account Information</b> to avoid delayed admin confirmation</font>
<br />
<input type="submit" value="Withdraw Funds" class="sbmt"></center>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="mb-5"></div>
</div>
</div>
</form>
</div>
</div>
</div><!--end column-70-->
</div>
</div>
</div>
<div class="contentBotContainer">
<div class="contentBotInner">
<div class="ctn-top-solid">
<h1>btc network </h1>
<h2> wallets: </h2>
<div class="solid-top">
<a href="https://trustwallet.com/" class="solidTop1"></a>
<a href="https://www.coinmama.com/" class="solidTop2"></a>
<a href="https://xapo.com/" class="solidTop3"></a>
<a href="https://airbitz.co/" class="solidTop4"></a>
</div>
</div>
<div class="clearfix"></div>
<div class="ctn-bot-solid">
<p>Market Cap: <span>$77829716960.00</span></p>
<p>Hashrate: <span>7108353254.76</span></p>
<p>Difficulty: <span>888171856257</span></p>
<p>Total Blocks: <span>482882</span> </p>
<p>Network Speed: <span>108.5 PH/s</span></p>
</div>
</div>
</div>
<div class="footerContainer">
<div class="footerInner">
<div class="ctn-footer-top">
<div class="ctn-ft-left">
<p>© Copyright <?= date('Y') ." ". $_SESSION['SITE-NAME'] ?>. All Right Reserved.</p>
</div>
<div class="ctn-ft-mid">
<a href=""><img src="db_files/logo.png"></a>
</div>
<div class="ft-solid">
<a href="https://www.facebook.com//" target="_blank" class="per"></a>
<a href="https://twitter.com/" target="_blank" class="bit"></a>
</div>
<div class="ctn-ft-right">
<ul>
<li><a href="withdraw-request.php?a=rules">TERMS OF SERVICES</a></li>
<li><a href="withdraw-request.php?a=faq">FAQ</a></li>
<li><a href="withdraw-request.php?a=news">NEWS</a></li>
<li><a href="withdraw-request.php?a=support">CONTACT US</a></li>
</ul>
</div>
</div>
</div>
</div> <!-- end bot footer -->
<script type="text/javascript">
$(document).ready(function() {
$('.accordion>dl>dt>a').click(function()
{
$(this).toggleClass("rotate0");
});
/*------- parse price --------*/
function parsePriceCrypto()
{
returnString = "";
$.post( "https://min-api.cryptocompare.com/data/pricemulti?fsyms=BTC,LTC,ETH,BCH,XRP&tsyms=USD", function( data )
{
$('#price_btc').text('$'+data['BTC']['USD']);
$('#price_ltc').text('$'+data['LTC']['USD']);
$('#price_eth').text('$'+data['ETH']['USD']);
$('#price_bch').text('$'+data['BCH']['USD']);
$('#price_xrp').text('$'+data['XRP']['USD']);
});
}
parsePriceCrypto();
setInterval(function()
{
parsePriceCrypto();
}
, 5000);
});
$('.language').click(function() {
$(this).toggleClass('active');
});
$('.mobileMenu').click(function() {
$('.menu').toggleClass('mobile');
$(this).toggleClass('rotate');
});
</script>
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/5ed679239e5f6944228fbc26/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
</body></html>