mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 17:43:42 -05:00
Update index.html
This commit is contained in:
parent
2a341df29d
commit
8ab6268f69
1 changed files with 19 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||||
<title>Casino</title>
|
<title>Casino Web Port</title>
|
||||||
<link rel="stylesheet" href="style.css"/>
|
<link rel="stylesheet" href="style.css"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -25,6 +25,7 @@
|
||||||
|
|
||||||
<h3>Select a Game:</h3>
|
<h3>Select a Game:</h3>
|
||||||
<button onclick="showScreen('blackjack')">Blackjack</button>
|
<button onclick="showScreen('blackjack')">Blackjack</button>
|
||||||
|
<button onclick="showScreen('slots')">Slots</button>
|
||||||
<button onclick="showScreen('stats')">View Stats</button>
|
<button onclick="showScreen('stats')">View Stats</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -47,6 +48,22 @@
|
||||||
<button onclick="returnToMenu()">Return to Menu</button>
|
<button onclick="returnToMenu()">Return to Menu</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Slots Screen -->
|
||||||
|
<div id="slots" class="screen">
|
||||||
|
<h2>🎰 Slots 🎰</h2>
|
||||||
|
<p>Money: $<span id="slots-money"></span></p>
|
||||||
|
<p>Enter your bet:</p>
|
||||||
|
<input type="number" id="slots-bet" min="1"/>
|
||||||
|
<button onclick="playSlots()">Spin</button>
|
||||||
|
|
||||||
|
<div id="slots-result">
|
||||||
|
<p>Result: <span id="slots-reels">- - -</span></p>
|
||||||
|
<p id="slots-message"></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button onclick="returnToMenu()">Return to Menu</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Stats Screen -->
|
<!-- Stats Screen -->
|
||||||
<div id="stats" class="screen">
|
<div id="stats" class="screen">
|
||||||
<h2>📊 Stats 📊</h2>
|
<h2>📊 Stats 📊</h2>
|
||||||
|
@ -55,6 +72,7 @@
|
||||||
<p>Level: <span id="stats-level"></span></p>
|
<p>Level: <span id="stats-level"></span></p>
|
||||||
<p>XP: <span id="stats-xp"></span></p>
|
<p>XP: <span id="stats-xp"></span></p>
|
||||||
<p>Blackjack Wins: <span id="stats-blackjack-wins"></span></p>
|
<p>Blackjack Wins: <span id="stats-blackjack-wins"></span></p>
|
||||||
|
<p>Slots Wins: <span id="stats-slots-wins"></span></p>
|
||||||
<button onclick="returnToMenu()">Return to Menu</button>
|
<button onclick="returnToMenu()">Return to Menu</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue