diff options
author | jbion <joffrey.bion@amadeus.com> | 2016-12-20 01:13:27 +0100 |
---|---|---|
committer | jbion <joffrey.bion@amadeus.com> | 2016-12-20 01:13:27 +0100 |
commit | 139cfb9ca348775d4eeed26dcc63f915c8dc42ee (patch) | |
tree | 3aa9c2f900fe8eb650cd0394bd098c8f0b747665 /src/main/resources/static/test.html | |
parent | Add conversion exception handling for bad input JSON format (diff) | |
download | seven-wonders-139cfb9ca348775d4eeed26dcc63f915c8dc42ee.tar.gz seven-wonders-139cfb9ca348775d4eeed26dcc63f915c8dc42ee.tar.bz2 seven-wonders-139cfb9ca348775d4eeed26dcc63f915c8dc42ee.zip |
Improve test page for custom subscriptions and msg testing
Diffstat (limited to 'src/main/resources/static/test.html')
-rw-r--r-- | src/main/resources/static/test.html | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/main/resources/static/test.html b/src/main/resources/static/test.html index 93c5d928..e19f9eb3 100644 --- a/src/main/resources/static/test.html +++ b/src/main/resources/static/test.html @@ -21,9 +21,19 @@ <form class="form-inline"> <div class="form-group"> - <label for="test-index-field">Send to /app/testX, with X in </label> - <input id="test-index-field"> - <button id="send-test" class="btn btn-default" type="submit">Send</button> + <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> |