diff options
Diffstat (limited to 'index.xhtml')
-rw-r--r-- | index.xhtml | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/index.xhtml b/index.xhtml index 30352bf..495d6f4 100644 --- a/index.xhtml +++ b/index.xhtml @@ -21,8 +21,28 @@ <span id="guild"></span> <form class="form-horizontal" method="post" action="craftmine.php"> <button type="button" name="withdraw" onclick="withdrawMine()">Withdraw</button> - <button type="button" name="createGuild" onclick="createGuild()">Create your guild</button> - <button type="button" name="hireMiner" onclick="hireMiner()">Hire one miner</button> - </form> + <span id="guildCreated"> + <button type="button" name="CreateGuild" onclick="createGuild()">Create your guild</button> + </span> + <span id="minerHired"> + <button type="button" name="HireMiner" onclick="hireMiner()">Hire one miner</button> + </span> + <div> + <h3>Items Shop</h3> + <div>wooden sword + <button type="button" name="epeeCuivre" onclick="buyItems()">buy</button> + </div> + <div>golden sword + <button type="button" name="goldenSword" onclick="buyItems()">buy</button> + </div> + <div>life bottle + <button type="button" name="lifeBottle" onclick="buyItems()">buy</button> + </div> + <div>strength bottle + <button type="button" name="strengthBottle" onclick="buyItems()">buy</button> + </div> +</div> +</form> + </body> </html> |