diff options
Diffstat (limited to 'index.xhtml')
-rw-r--r-- | index.xhtml | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/index.xhtml b/index.xhtml index e879cf1..6627ec5 100644 --- a/index.xhtml +++ b/index.xhtml @@ -65,6 +65,7 @@ <li role="presentation"><a href="#tab2" data-toggle="tab">Shop</a></li> <li role="presentation"><a href="#tab3" data-toggle="tab">Inventory</a></li> <li role="presentation"><a href="#tab4" data-toggle="tab">Dungeon</a></li> + <li role="presentation" class="pull-right"><a href="#tab5" data-toggle="tab" onclick="listSaves()">Save</a></li> </ul> <div class="tab-content"> <div class="tab-pane" id="tab1"> @@ -83,11 +84,18 @@ <div class="tab-pane" id="tab4"> <h4>Look at how poor you are! You can't access the dungeon, it is only for the elite.</h4> </div> + <div class="tab-pane" id="tab5"> + <h4>Saved games:</h4> + <div class="form" id="listsaves"> + </div> + <ul class="list-inline"> + <li><button class="btn btn-default" type="button" onclick="loadSave()">Load</button></li> + <li><button class="btn btn-default" type="button" onclick="downloadSave()">Download</button></li> + <li><button class="btn btn-default" type="button" onclick="deleteSave()">Delete</button></li> + </ul> + </div> </div> </div> - - - </div> </div> </div> |