Guest User

Untitled

a guest
Oct 15th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3. <head>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" href="game.css">
  6. <title>Dice ethereum game</title>
  7. </head>
  8. <body>
  9. <div class="main-container-game">
  10. <h1>Ethereum Dice</h1>
  11.  
  12. <div>
  13. <div class="status"></div>
  14. <div class="game-info"></div>
  15. <div>
  16. <p>1. Place your bet</p>
  17. <input type="number" class="bet-input" placeholder="Your bet in ether..."/>
  18. </div>
  19. <div>
  20. <p>2. Choose your expected result</p>
  21. <img src="imgs/dice1.png" class="dice-image" id="dice1"/>
  22. <img src="imgs/dice2.png" class="dice-image" id="dice2"/>
  23. <img src="imgs/dice3.png" class="dice-image" id="dice3"/>
  24. <img src="imgs/dice4.png" class="dice-image" id="dice4"/>
  25. <img src="imgs/dice5.png" class="dice-image" id="dice5"/>
  26. <img src="imgs/dice6.png" class="dice-image" id="dice6"/>
  27. </div>
  28. <button class="place-bet">Place Bet</button>
  29. </div>
  30. </div>
  31.  
  32. <script src="ethereumjs.js"></script>
  33. <script src="ethereumjs-util.js"></script>
  34. <script src="socket.io.js"></script>
  35. <script src="contractData.js"></script>
  36. <script src="game.js"></script>
  37. </body>
  38. </html>
Add Comment
Please, Sign In to add comment