home.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="container">
  4. <form action="/game">
  5. <div class="row">
  6. <div class="one-half column">
  7. <input type="text"
  8. class="u-full-width"
  9. placeholder="Player Name"
  10. id="playerNameNewInput"
  11. name="playerName">
  12. </div>
  13. <div class="one-half column">
  14. <button type="submit"
  15. class="button-primary button-full">
  16. New Game
  17. </a>
  18. </div>
  19. </div>
  20. </form>
  21. <hr>
  22. <form action="/game">
  23. <div class="row">
  24. <div class="one-third column">
  25. <input type="text"
  26. class="u-full-width"
  27. placeholder="Game Code"
  28. id="gameCodeInput"
  29. name="gameCode">
  30. </div>
  31. <div class="one-third column">
  32. <input type="text"
  33. class="u-full-width"
  34. name="playerName"
  35. id="playerNameJoinInput"
  36. placeholder="Player Name">
  37. </div>
  38. <div class="one-third column">
  39. <button type="submit"
  40. class="button-primary button-full">
  41. Join Game
  42. </button>
  43. </div>
  44. </div>
  45. </form>
  46. </div>
  47. {% endblock %}