PHP WebShell

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

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

<?php
// user/account/terms.php
require_once __DIR__ . '/../../config/bootstrap.php';

if (empty($_SESSION['user_id'])) {
  header('Location: /auth/login.php');
  exit;
}

include __DIR__ . '/../common/header.php';
?>
<style>
  .card-soft { border:1px solid rgba(7,98,137,.12); border-radius:12px; background:#fff; box-shadow:0 8px 24px rgba(7,98,137,.06); }
  .muted { color:#6b7280; }
  .doc-title { font-weight:800; letter-spacing:-.02em; }
  .doc-meta { font-size:.875rem; color:#6b7280; }
  .doc-h { font-weight:700; margin-top:18px; margin-bottom:8px; }
  .doc-p { color:#374151; font-size:.95rem; line-height:1.65; }
  .doc-li { color:#374151; font-size:.95rem; line-height:1.65; margin-bottom:6px; }
  .back-btn-sm{ padding:4px 10px; font-size:.80rem; border-radius:10px; }
  .pill { display:inline-flex; align-items:center; padding:4px 10px; border-radius:999px; background:rgba(7,98,137,.08); color:#076289; font-size:.78rem; font-weight:700; }
</style>

<div class="container mt-3">
  <div class="row">

    <? include __DIR__ . '/../common/nav.php'; ?>

    <main class="col-md-9 col-lg-10 px-md-5 mb-5">
      <? include __DIR__ . '/../common/page-header.php'; ?>

      <div class="container my-5 px-md-5 ms-md-4">

        <div class="d-flex align-items-start justify-content-between mb-3">
          <div class="text-start">
            <h4 class="doc-title mb-1">Terms & Conditions</h4>
            <div class="doc-meta">
              <span class="pill">Bitcardo</span>
              <span class="ms-2">Last updated: <strong>January 4, 2026</strong></span>
            </div>
          </div>

          <a href="/user/account/account.php" class="btn btn-outline-secondary btn-sm back-btn-sm">
            <i class="bi bi-arrow-left"></i> Back
          </a>
        </div>

        <div class="card-soft p-3 p-md-4 text-start">
          <div class="doc-p mb-3">
            These Terms & Conditions (“Terms”) govern your access to and use of Bitcardo (the “Service”).
            By creating an account or using the Service, you agree to these Terms. If you do not agree, do not use the Service.
          </div>

          <div class="doc-h">1. Eligibility</div>
          <div class="doc-p">
            You must be legally capable of entering into a binding agreement and comply with applicable laws in your jurisdiction.
            You are responsible for ensuring the Service is lawful to use where you are located.
          </div>

          <div class="doc-h">2. Account registration and security</div>
          <ul class="mb-0 ps-3">
            <li class="doc-li">You must provide accurate information and keep it up to date.</li>
            <li class="doc-li">You are responsible for safeguarding your password, devices, and any 2FA credentials.</li>
            <li class="doc-li">You must notify us immediately of any unauthorized access or suspicious activity.</li>
          </ul>

          <div class="doc-h">3. Wallets, transactions, and confirmations</div>
          <div class="doc-p">
            Crypto transactions may be irreversible. Finality is subject to network confirmations and other blockchain conditions.
            You are responsible for verifying destination addresses and transaction details before submitting.
          </div>

          <div class="doc-h">4. Fees and pricing</div>
          <div class="doc-p">
            Fees may apply to certain transactions (e.g., withdrawals, swaps, conversions). Applicable fees and pricing will be displayed
            within the app or on relevant screens. Network fees (gas/miner fees) may be included or charged separately depending on the asset.
          </div>

          <div class="doc-h">5. Limits and compliance</div>
          <div class="doc-p">
            We may apply account-level limits (e.g., withdrawal limits, daily limits) based on your account level, risk assessment,
            or regulatory requirements. We may request additional information to comply with legal obligations.
          </div>

          <div class="doc-h">6. Prohibited activities</div>
          <ul class="mb-0 ps-3">
            <li class="doc-li">Using the Service for illegal activities, fraud, or money laundering.</li>
            <li class="doc-li">Attempting to bypass security or access controls.</li>
            <li class="doc-li">Interfering with the Service (e.g., exploitation, abuse, or excessive automated requests).</li>
          </ul>

          <div class="doc-h">7. Suspension and termination</div>
          <div class="doc-p">
            We may suspend or terminate your access if we believe your account poses a security risk, violates these Terms,
            or is required by law. You may request account closure via the Close Account process.
          </div>

          <div class="doc-h">8. Risk disclosure</div>
          <div class="doc-p">
            Digital assets are volatile and carry risk of loss. You acknowledge you understand these risks and that Bitcardo does not provide
            investment advice. You are solely responsible for your financial decisions.
          </div>

          <div class="doc-h">9. Disclaimers</div>
          <div class="doc-p">
            The Service is provided “as is” and “as available”. We do not guarantee uninterrupted access, error-free operation, or that
            transactions will always complete as expected due to third-party and network dependencies.
          </div>

          <div class="doc-h">10. Limitation of liability</div>
          <div class="doc-p">
            To the maximum extent permitted by law, Bitcardo will not be liable for indirect, incidental, special, consequential, or punitive damages,
            or any loss of profits, data, goodwill, or other intangible losses arising from your use of the Service.
          </div>

          <div class="doc-h">11. Changes to these Terms</div>
          <div class="doc-p">
            We may update these Terms from time to time. We will update the “Last updated” date and may notify you in-app for material changes.
            Continued use after changes means you accept the updated Terms.
          </div>

          <div class="doc-h">12. Contact</div>
          <div class="doc-p mb-0">
            For questions, contact us via the support channels available in your account area.
          </div>
        </div>

      </div>
    </main>
  </div>
</div>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<? include __DIR__ . '/../common/footer.php'; ?>

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


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