-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrooms.html
53 lines (49 loc) · 1.5 KB
/
rooms.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Game</title>
<link rel="stylesheet" href="static/css/bootstrap.css">
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<a class="navbar-brand" href="#">Archer Duel</a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Hello, Player!</a></li>
</ul>
</div>
</nav>
<div>
<div class="panel panel-info text-center" style="max-width: 48%; min-width: 30%; float: left;">
<div class="panel-heading">Game Rooms</div>
<div class="panel-body">
<button class="btn btn-lg btn-primary btn-block" type="button" onclick="location='/game/new'">Start Game
</button>
</div>
<table class="table clicktable">
<tr onclick="location='#'">
<td>Player 1 vs Player 2</td>
</tr>
<tr>
<td>Player 1 vs Player 2</td>
</tr>
</table>
</div>
<div class="panel panel-info text-center" style="max-width: 48%; min-width: 30%; float: right;">
<div class="panel-heading table-striped" style="border: 0;">Statistic</div>
<table class="table">
<tr>
<td>First</td>
<td>Second</td>
</tr>
<tr>
<td>FF</td>
<td>SS</td>
</tr>
</table>
</div>
</div>
</body>
</html>