blackjack/resources/static/index.html
William Brawner 5e82a6f51d Implement game setup
You can create a new game and then invite people. On the receiving end, you can receive a link to join the game and then jump in. Once the host starts the game all players are dealt 2 cards.
2021-02-28 09:22:06 -07:00

19 lines
No EOL
531 B
HTML

<!DOCTYPE html>
<!--suppress HtmlUnknownTarget -->
<html lang="en_US">
<head>
<title>BlackJack</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="css/style.css"/>
<script type="text/javascript" src="js/app.js"></script>
</head>
<body>
<div class="content">
<h1 class="title">BlackJack</h1>
<div class="actions">
<a href="/join" class="button">Join Game</a>
<a href="/host" class="button">Host Game</a>
</div>
</div>
</body>
</html>