69 lines
2.3 KiB
PHP
69 lines
2.3 KiB
PHP
<?php
|
|
session_start();
|
|
// If not logged in, redirect to login
|
|
if (!isset($_SESSION['username'])) {
|
|
header('Location: loginn.php');
|
|
exit;
|
|
}
|
|
?>
|
|
<!doctype html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Blackjack [21] - OCA GameHub</title>
|
|
|
|
<link rel="stylesheet" href="cliff.css" />
|
|
</head>
|
|
<body>
|
|
<div class="table" role="application" aria-label="Blackjack tanpa iklan">
|
|
<header>
|
|
<h1> Blackjack [21] </h1>
|
|
<div class="controls">
|
|
<div style="display:flex;gap:12px;align-items:center;margin-bottom:8px;">
|
|
<div>Signed in as: <strong><?php echo htmlspecialchars($_SESSION['username']); ?></strong></div>
|
|
<a href="topup.php" style="text-decoration:none;padding:6px 10px;background:#3b82f6;color:#fff;border-radius:6px;">Top Up</a>
|
|
<a href="logout.php" style="text-decoration:none;padding:6px 10px;background:#ef4444;color:#fff;border-radius:6px;">Logout</a>
|
|
</div>
|
|
<div class="info">
|
|
<div class="chip">Bank: <span id="balance"><?php echo isset($_SESSION['balance']) ? (int)$_SESSION['balance'] : 0; ?></span></div>
|
|
<div class="chip">Taruhan: <span id="current-bet">0</span></div>
|
|
</div>
|
|
<div class="bet">
|
|
<input id="bet-input" type="number" min="1" value="50" />
|
|
<button id="bet-btn">Pasang Taruhan</button>
|
|
<button id="new-round" class="secondary"> Reset </button>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<div class="board" id="dealer-area">
|
|
<div class="section-title">Dealer</div>
|
|
<div class="hand" id="dealer-hand"></div>
|
|
<div class="values" id="dealer-value"></div>
|
|
</div>
|
|
|
|
<div class="board" id="player-area">
|
|
<div class="section-title">Pemain</div>
|
|
<div class="hand" id="player-hand"></div>
|
|
<div class="values" id="player-value"></div>
|
|
|
|
<div class="actions" id="action-buttons">
|
|
<button id="hit">Hit</button>
|
|
<button id="stand">Stand</button>
|
|
<button id="double">Double</button>
|
|
</div>
|
|
<div class="message" id="message"></div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer>
|
|
OCA GameHub - <code> Blackjack_[21] - </code> Semoga menang bosq
|
|
</footer>
|
|
</div>
|
|
|
|
<script src="ody git.js"></script>
|
|
</body>
|
|
</html>
|