summaryrefslogtreecommitdiff
path: root/src/main/resources/static/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/static/index.html')
-rw-r--r--src/main/resources/static/index.html64
1 files changed, 0 insertions, 64 deletions
diff --git a/src/main/resources/static/index.html b/src/main/resources/static/index.html
deleted file mode 100644
index d5ec178d..00000000
--- a/src/main/resources/static/index.html
+++ /dev/null
@@ -1,64 +0,0 @@
-<!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> \ No newline at end of file
bgstack15