diff options
author | piernov <piernov@piernov.org> | 2016-05-04 14:57:54 +0200 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2016-05-04 14:57:54 +0200 |
commit | 2587d9627294ef3324a88aa6d11be48c72e397f3 (patch) | |
tree | d65c3549b272155541b23d67450f9695b8c82e3d | |
parent | 35ec65de0869c77fc66bf3f2702c561efd98f4af (diff) | |
download | candybox-2587d9627294ef3324a88aa6d11be48c72e397f3.tar.gz candybox-2587d9627294ef3324a88aa6d11be48c72e397f3.tar.bz2 candybox-2587d9627294ef3324a88aa6d11be48c72e397f3.tar.xz candybox-2587d9627294ef3324a88aa6d11be48c72e397f3.zip |
Form → list
-rw-r--r-- | index.xhtml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/index.xhtml b/index.xhtml index f242f76..77ddf23 100644 --- a/index.xhtml +++ b/index.xhtml @@ -31,10 +31,10 @@ <span id="mine">0</span> <p>Miners : <span id="miners">0</span></p> <span id="guild"></span> - <form class="form-horizontal" method="post" action="craftmine.php"> - <button class="btn btn-default" type="button" name="withdraw" onclick="withdrawMine()">Withdraw</button> - <button class="btn btn-default" type="button" name="HireMiner" onclick="hireMiner()">Hire one miner</button> - </form> + <ul class="list-inline"> + <li><button class="btn btn-default" type="button" name="withdraw" onclick="withdrawMine()">Withdraw</button></li> + <li><button class="btn btn-default" type="button" name="HireMiner" onclick="hireMiner()">Hire one miner</button></li> + </ul> </div> </div> <div id="error-box" class="row" style="margin-top:1em;display:none"> |