summaryrefslogtreecommitdiff
path: root/src/main/resources/static/index.html
diff options
context:
space:
mode:
authorVictor Chabbert <chabbertvi@eisti.eu>2016-12-18 09:30:04 +0100
committerVictor Chabbert <chabbertvi@eisti.eu>2016-12-18 09:30:04 +0100
commit88827a0633c6e359659e7aa79862672ac255df27 (patch)
treed0a8c29179f49208aca92f6daf1ca02446b8cf81 /src/main/resources/static/index.html
parentAdd redux and react-redux librairies with initial setup (diff)
parentImprove LobbyController errors and logs (diff)
downloadseven-wonders-88827a0633c6e359659e7aa79862672ac255df27.tar.gz
seven-wonders-88827a0633c6e359659e7aa79862672ac255df27.tar.bz2
seven-wonders-88827a0633c6e359659e7aa79862672ac255df27.zip
Merge branch 'master' of github.com:luxons/seven-wonders
Diffstat (limited to 'src/main/resources/static/index.html')
-rw-r--r--src/main/resources/static/index.html8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/main/resources/static/index.html b/src/main/resources/static/index.html
index 6131e912..d5ec178d 100644
--- a/src/main/resources/static/index.html
+++ b/src/main/resources/static/index.html
@@ -52,7 +52,13 @@
</tbody>
</table>
-<button id="create-game" class="btn btn-default" type="submit">Create Game</button>
+<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