38350-vm/status.php
2026-02-11 11:52:19 +00:00

45 lines
3.4 KiB
PHP

<?php include 'header.php'; ?>
<main style="background: #0b0e11; color: white; min-height: 100vh; padding: 100px 5%;">
<div style="max-width: 800px; margin: 0 auto;">
<div style="background: rgba(14,203,129,0.1); border: 1px solid var(--success-color); padding: 30px; border-radius: 24px; text-align: center; margin-bottom: 50px;">
<i class="fas fa-check-circle" style="font-size: 3rem; color: var(--success-color); margin-bottom: 15px;"></i>
<h1 style="font-size: 2rem; margin-bottom: 10px;">All Systems Operational</h1>
<p style="color: var(--text-muted);">Last checked: <?php echo date('Y-m-d H:i:s'); ?> UTC</p>
</div>
<div style="background: #161a1e; border-radius: 24px; border: 1px solid #2b3139; padding: 40px;">
<h2 style="font-size: 1.5rem; margin-bottom: 30px;">Service Status</h2>
<div style="display: flex; flex-direction: column; gap: 25px;">
<div style="display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid #2b3139;">
<span style="font-weight: 500;">Trading Engine</span>
<span style="background: rgba(14,203,129,0.2); color: var(--success-color); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold;">OPERATIONAL</span>
</div>
<div style="display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid #2b3139;">
<span style="font-weight: 500;">Matching System</span>
<span style="background: rgba(14,203,129,0.2); color: var(--success-color); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold;">OPERATIONAL</span>
</div>
<div style="display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid #2b3139;">
<span style="font-weight: 500;">API Access</span>
<span style="background: rgba(14,203,129,0.2); color: var(--success-color); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold;">OPERATIONAL</span>
</div>
<div style="display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid #2b3139;">
<span style="font-weight: 500;">Deposits & Withdrawals</span>
<span style="background: rgba(14,203,129,0.2); color: var(--success-color); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold;">OPERATIONAL</span>
</div>
<div style="display: flex; justify-content: space-between; align-items: center;">
<span style="font-weight: 500;">Mobile App</span>
<span style="background: rgba(14,203,129,0.2); color: var(--success-color); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold;">OPERATIONAL</span>
</div>
</div>
</div>
<div style="margin-top: 50px; text-align: center; color: var(--text-muted); font-size: 0.9rem;">
<p>Subscribe to updates via <a href="#" style="color: var(--primary-color);">Email</a> or <a href="#" style="color: var(--primary-color);">RSS</a>.</p>
</div>
</div>
</main>
<?php include 'footer.php'; ?>