-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 917 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<head>
<meta charset="UTF-8">
<title>Sheepshead</title>
</head>
<body>
<h1>Schafkopf</h1>
<button id="shuffle"></button>
<h3 id="select_game"></h3>
<select id="gameType"></select>
<select id="gameColor"></select>
<button id="play">Play</button>
<br/><br/>
<h3 id="cards_heading"></h3>
<table id="cards">
<tr id="player1">
</tr>
</table>
<br/>
<br/>
<h3 id="stacks_heading"></h3>
<table>
<tr><th colspan="4" id="current_hand"></th></tr>
<tr id="stack1"></tr>
<tr><th colspan="4" id="previous_hand"></th></tr>
<tr id="stack2"></tr>
</table>
<h3>Log</h3>
<textarea readonly rows="20" cols="100" id="log"></textarea>
<script src="index.ts"></script>
</body>
</html>