Skip to main content

Withdraw Funds

Withdraw your winnings to your bank account or cryptocurrency wallet

Withdraw Funds

Cash out your winnings to your preferred payment method

<div class="tab-content">
  <!-- Bank Transfer Tab -->
  <div id="bank-transfer" class="tab-pane active">
    <div class="withdraw-form">
      <div class="form-group">
        <label for="bank-amount">Amount to Withdraw ($)</label>
        <div class="input-with-icon">
          <span class="currency-icon">$</span>
          <input type="number" id="bank-amount" min="10" step="5" placeholder="0.00">
        </div>
        <div class="amount-hint">Minimum withdrawal: $10.00</div>
      </div>
      
      <div class="saved-accounts">
        <h3>Your Bank Accounts</h3>
        
        <div class="accounts-list">
          <div class="no-accounts">
            You don't have any saved bank accounts yet.
          </div>
          
          <button id="add-account" class="add-account-btn">
            <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
              <path d="M12 5v14" />
              <path d="M5 12h14" />
            </svg>
            Add Bank Account
          </button>
        </div>
      </div>
      
      <div id="add-account-form" class="add-account-form hidden">
        <h3>Add Bank Account</h3>
        
        <div class="form-group">
          <label for="account-holder">Account Holder Name</label>
          <input type="text" id="account-holder" placeholder="Your full name">
        </div>
        
        <div class="form-row">
          <div class="form-group">
            <label for="routing-number">Routing Number</label>
            <input type="text" id="routing-number" placeholder="9 digits">
          </div>
          
          <div class="form-group">
            <label for="account-number">Account Number</label>
            <input type="text" id="account-number" placeholder="Your account number">
          </div>
        </div>
        
        <div class="form-group">
          <label for="account-type">Account Type</label>
          <select id="account-type">
            <option value="checking">Checking</option>
            <option value="savings">Savings</option>
          </select>
        </div>
        
        <div class="form-actions">
          <button id="cancel-add-account" class="cancel-btn">Cancel</button>
          <button id="save-account" class="save-btn">Save Account</button>
        </div>
      </div>
      
      <div id="bank-errors" class="error-message" role="alert"></div>
      
      <button id="submit-bank-withdraw" class="withdraw-button">
        <span id="bank-button-text">Withdraw to Bank</span>
        <div id="bank-spinner" class="spinner hidden"></div>
      </button>
    </div>
  </div>
  
  <!-- PayPal Tab -->
  <div id="paypal" class="tab-pane">
    <div class="withdraw-form">
      <div class="form-group">
        <label for="paypal-email">PayPal Email Address</label>
        <input type="email" id="paypal-email" placeholder="your-email@example.com">
      </div>
      
      <div class="form-group">
        <label for="paypal-amount">Amount to Withdraw ($)</label>
        <div class="input-with-icon">
          <span class="currency-icon">$</span>
          <input type="number" id="paypal-amount" min="10" step="5" placeholder="0.00">
        </div>
        <div class="amount-hint">Minimum withdrawal: $10.00</div>
      </div>
      
      <div id="paypal-errors" class="error-message" role="alert"></div>
      
      <button id="submit-paypal-withdraw" class="withdraw-button">
        <span id="paypal-button-text">Withdraw to PayPal</span>
        <div id="paypal-spinner" class="spinner hidden"></div>
      </button>
      
      <div class="paypal-info">
        <p>Funds will typically arrive in your PayPal account within 24 hours, but may take up to 3 business days during high volume periods.</p>
      </div>
    </div>
  </div>
  
  <!-- Cryptocurrency Tab -->
  <div id="crypto" class="tab-pane">
    <div class="withdraw-form">
      <div class="form-group">
        <label for="crypto-currency">Select Cryptocurrency</label>
        <select id="crypto-currency">
          <option value="btc">Bitcoin (BTC)</option>
          <option value="eth">Ethereum (ETH)</option>
          <option value="sol">Solana (SOL)</option>
          <option value="usdc">USD Coin (USDC)</option>
        </select>
      </div>
      
      <div class="form-group">
        <label for="crypto-address">Your Wallet Address</label>
        <input type="text" id="crypto-address" placeholder="Enter your wallet address">
      </div>
      
      <div class="form-group">
        <label for="crypto-amount">Amount to Withdraw ($)</label>
        <div class="input-with-icon">
          <span class="currency-icon">$</span>
          <input type="number" id="crypto-amount" min="10" step="5" placeholder="0.00">
        </div>
        <div class="amount-hint">Minimum withdrawal: $10.00</div>
      </div>
      
      <div class="crypto-conversion">
        <p>You will receive approximately <span id="crypto-value">0.00</span> <span id="crypto-symbol">BTC</span></p>
      </div>
      
      <div id="crypto-errors" class="error-message" role="alert"></div>
      
      <button id="submit-crypto-withdraw" class="withdraw-button">
        <span id="crypto-button-text">Withdraw to Wallet</span>
        <div id="crypto-spinner" class="spinner hidden"></div>
      </button>
      
      <div class="crypto-info">
        <p>Please double-check your wallet address carefully. Cryptocurrency transactions cannot be reversed once confirmed.</p>
        <p>Withdrawals will be processed within 2 hours during normal operation.</p>
      </div>
    </div>
  </div>
</div>

Recent Withdrawals

<div class="withdrawal-history">
  <div class="withdrawal-item">
    <div class="withdrawal-icon bank">
      <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
        <rect width="20" height="14" x="2" y="5" rx="2" />
        <line x1="2" x2="22" y1="10" y2="10" />
      </svg>
    </div>
    <div class="withdrawal-details">
      <div class="withdrawal-primary">
        <span class="withdrawal-method">Bank Transfer</span>
        <span class="withdrawal-amount">$200.00</span>
      </div>
      <div class="withdrawal-secondary">
        <span class="withdrawal-date">Apr 2, 2023</span>
        <span class="withdrawal-status completed">Completed</span>
      </div>
    </div>
  </div>
  
  <div class="withdrawal-item">
    <div class="withdrawal-icon paypal">
      <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
        <path d="M7 11l2 7a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2l3-10a2 2 0 0 0-2-2h-6a2 2 0 0 0-2 2v3Z" />
        <path d="M10 11h6a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-6a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2Z" />
      </svg>
    </div>
    <div class="withdrawal-details">
      <div class="withdrawal-primary">
        <span class="withdrawal-method">PayPal</span>
        <span class="withdrawal-amount">$150.00</span>
      </div>
      <div class="withdrawal-secondary">
        <span class="withdrawal-date">Mar 18, 2023</span>
        <span class="withdrawal-status completed">Completed</span>
      </div>
    </div>
  </div>
  
  <div class="withdrawal-item">
    <div class="withdrawal-icon crypto">
      <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
        <path d="M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727" />
      </svg>
    </div>
    <div class="withdrawal-details">
      <div class="withdrawal-primary">
        <span class="withdrawal-method">Bitcoin</span>
        <span class="withdrawal-amount">$100.00</span>
      </div>
      <div class="withdrawal-secondary">
        <span class="withdrawal-date">Mar 5, 2023</span>
        <span class="withdrawal-status processing">Processing</span>
      </div>
    </div>
  </div>
</div>