summaryrefslogtreecommitdiff
path: root/src/main/resources/static/index.html
blob: d5ec178dd8045fe36f4d892a37c265ad408f4f14 (plain)
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
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
    <title>Seven Wonders</title>
    <link href="/webjars/bootstrap/css/bootstrap.min.css" rel="stylesheet">
    <link href="/main.css" rel="stylesheet">
    <script src="/webjars/jquery/jquery.min.js"></script>
    <script src="/webjars/sockjs-client/sockjs.min.js"></script>
    <script src="/webjars/stomp-websocket/stomp.min.js"></script>
    <script src="app.js"></script>
</head>
<body>
<noscript>
    <h2 style="color: #ff0000">Seems your browser doesn't support Javascript! Websocket relies on Javascript being
    enabled. Please enable Javascript and reload this page!</h2>
</noscript>

<h1>Seven Wonders</h1>

<p>This is a stub index page for the project, for the sake of vertical completeness. We will soon get to work on it!</p>

<a href="test.html">Go to WS test page</a>


<h2>Connection</h2>

<form class="form-inline">
    <div class="form-group">
        <label for="connect">WebSocket connection:</label>
        <button id="connect" class="btn btn-default" type="submit">Connect</button>
        <button id="disconnect" class="btn btn-default" type="submit" disabled="disabled">Disconnect</button>
    </div>
</form>

<h2>Games</h2>

<form class="form-inline">
    <div class="form-group">
        <label for="player-name-field">Player name</label>
        <input id="player-name-field">
    </div>
</form>

<table id="game-list" class="table table-striped">
    <thead>
    <tr>
        <th>Id</th>
        <th></th>
    </tr>
    </thead>
    <tbody id="game-list-content">
    </tbody>
</table>

<form class="form-inline">
    <div class="form-group">
        <label for="game-name-field">Game name</label>
        <input id="game-name-field">
        <button id="create-game" class="btn btn-default" type="submit">Create</button>
    </div>
</form>

</body>
</html>
bgstack15