|
<!doctype html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8" /> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
|
<title>1kcoins</title> |
|
<link |
|
rel="stylesheet" |
|
href="{{ url_for('static', filename='css/style.css') }}" |
|
/> |
|
</head> |
|
<body> |
|
<div id="stats"> |
|
<div>Balance: <span id="balance">$10.00</span></div> |
|
<div>Flips left: <span id="flips-left">1000</span></div> |
|
</div> |
|
<div id="game-area"> |
|
<div id="coin">Flip</div> |
|
</div> |
|
<div id="shop"></div> |
|
|
|
<div id="game-over" style="display: none"> |
|
<h2>Game Over</h2> |
|
<p>Your final balance: $<span id="final-balance"></span></p> |
|
<div id="leaderboard"></div> |
|
<form id="initials-form"> |
|
<input |
|
type="text" |
|
id="initials-input" |
|
maxlength="3" |
|
placeholder="Enter your initials" |
|
/> |
|
<button type="submit" id="submit-score">Submit Score</button> |
|
</form> |
|
<button id="play-again">Play Again</button> |
|
</div> |
|
|
|
<script src="{{ url_for('static', filename='js/game.js') }}"></script> |
|
</body> |
|
</html> |
|
|