PHP WebShell

Текущая директория: /var/www/bitcardoApp/user/fiat

Просмотр файла: send_fiat_failed.php

<?php
$error = $_GET["error"] ?? "Unknown error.";

include '../common/header.php';
?>

<style>
    .fail-container {
      max-width: 600px;
      margin: 2rem auto;
      padding: 2rem;
      border-radius: 12px;
      background: #fff3f3;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      text-align: center;
    }
    .fail-icon {
      font-size: 4rem;
      color: #dc3545;
    }
</style>

<div class="container mt-3">
    <div class="row">
        <? include '../common/nav.php'; ?>
        
        <main class="col-md-9 col-lg-10 px-md-5 mb-5">
            <? include '../common/page-header.php'; ?>
            
            <div class="fail-container">
                <div class="fail-icon mb-3">
                    <i class="bi bi-x-circle-fill"></i>
                </div>
                <h3 class="mb-3 text-danger">Transfer Failed</h3>
                <p class="mb-3"><?= htmlspecialchars($error) ?></p>
                <a href="send_fiat.php" class="btn btn-outline-primary mt-3">Try Again</a>
            </div>
        </main>
    </div>
</div>

<? include '../common/footer.php'; ?>

Выполнить команду


Для локальной разработки. Не используйте в интернете!