mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 05:33:40 -05:00
38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Casino Game</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="welcome-screen" class="screen active">
|
|
<input type="text" id="username-input" placeholder="Enter your username" />
|
|
<button onclick="loadUserData()">Start</button>
|
|
</div>
|
|
|
|
<div id="main-menu" class="screen">
|
|
<h1>Welcome, <span id="player-username"></span></h1>
|
|
<p>Money: $<span id="player-money"></span></p>
|
|
<p>Level: <span id="player-level"></span></p>
|
|
<p>XP: <span id="player-xp"></span>/<span id="player-xp-max"></span></p>
|
|
<div id="xp-progress" class="xp-progress"></div>
|
|
<button onclick="returnToMenu()">Back to Main Menu</button>
|
|
|
|
<!-- Games list goes here -->
|
|
<button onclick="startBlackjack()">Blackjack</button>
|
|
<button onclick="playSlots()">Slots</button>
|
|
<button onclick="playRoulette()">Roulette</button>
|
|
<button onclick="placeHorseBet()">Horse Betting</button>
|
|
<button onclick="flipCoin()">Coin Flip</button>
|
|
<button onclick="playKeno()">Keno</button>
|
|
</div>
|
|
|
|
<div id="game-screen" class="screen">
|
|
<!-- Specific game content will go here (e.g., Blackjack, Slots, etc.) -->
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|