You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.4 KiB

  1. <div class="modal fade" id="modalNewGame" tabindex="-1" role="dialog" aria-labelledby="modalNewGameTitle"
  2. aria-hidden="true">
  3. <div class="modal-dialog modal-lg modal-dialog-scrollable" role="document">
  4. <div class="modal-content">
  5. <div class="modal-header">
  6. <h5 class="modal-title">Add New Game</h5>
  7. <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  8. <span aria-hidden="true">&times;</span>
  9. </button>
  10. </div>
  11. <div class="modal-body">
  12. <form>
  13. <div class="form-group">
  14. <label>Game Title</label>
  15. <input type="text" class="form-control" placeholder="Game Title" aria-label="Game title"
  16. aria-describedby="basic-addon2" id="game-title" name="game-title">
  17. </div>
  18. <div class="form-group">
  19. <label>Game Link</label>
  20. <input type="text" class="form-control" placeholder="Game Link" aria-label="Game link"
  21. aria-describedby="basic-addon2" id="game-link" name="game-link">
  22. </div>
  23. </form>
  24. <button class="btn btn-primary" href="#" role="button" onclick="addGame();">Save</button>
  25. </div>
  26. </div>
  27. </div>
  28. </div>