summaryrefslogtreecommitdiff
path: root/src/main/resources/static/test.html
diff options
context:
space:
mode:
authorjbion <joffrey.bion@amadeus.com>2017-01-20 16:11:24 +0100
committerjbion <joffrey.bion@amadeus.com>2017-01-20 16:11:35 +0100
commitb32cdf5c4f5d0b4f31b3bcfa64fe9328ed78d818 (patch)
treebdda009d448cb6b56415d90eae90eceb138318e4 /src/main/resources/static/test.html
parentMerge remote-tracking branch 'origin/feature/front' (diff)
downloadseven-wonders-b32cdf5c4f5d0b4f31b3bcfa64fe9328ed78d818.tar.gz
seven-wonders-b32cdf5c4f5d0b4f31b3bcfa64fe9328ed78d818.tar.bz2
seven-wonders-b32cdf5c4f5d0b4f31b3bcfa64fe9328ed78d818.zip
Move frontend and backend into 2 separate subprojects
Diffstat (limited to 'src/main/resources/static/test.html')
-rw-r--r--src/main/resources/static/test.html55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/main/resources/static/test.html b/src/main/resources/static/test.html
deleted file mode 100644
index e19f9eb3..00000000
--- a/src/main/resources/static/test.html
+++ /dev/null
@@ -1,55 +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="test-ws.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 Test Page</h1>
-
-<h2>WS messages tests</h2>
-
-<form class="form-inline">
- <div class="form-group">
- <label for="subscribe-path-field">Path:</label>
- <input id="subscribe-path-field" placeholder="path">
- <button id="subscribe-btn" class="btn btn-default" type="submit">Subscribe</button>
- </div>
-</form>
-
-<form class="form-inline">
- <div class="form-group">
- <label for="path-field">Path:</label>
- <input id="path-field" placeholder="path">
- <label for="payload-field">Payload:</label>
- <input id="payload-field" placeholder="JSON payload">
- <button id="send-btn" class="btn btn-default" type="submit">Send</button>
- </div>
-</form>
-
-<h2>Subscribed feeds</h2>
-
-<table class="table table-striped">
- <thead>
- <tr>
- <th>Endpoint</th>
- <th>Data received</th>
- </tr>
- </thead>
- <tbody id="test-feeds">
- </tbody>
-</table>
-
-
-</body>
-</html> \ No newline at end of file
bgstack15