William Brawner
5e82a6f51d
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.
19 lines
No EOL
531 B
HTML
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> |