Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

51 linhas
1.8 KiB

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE html>
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta charset="utf-8" />
  6. <title>Round table groups generator</title>
  7. <link href="css/app.css" rel="stylesheet">
  8. <script src="app.js"></script>
  9. </head>
  10. <body>
  11. <nav>
  12. <div>
  13. <button title="load participants from file" onclick="loadParticipantsFileChooser()">
  14. <img src='images/upload.svg' />
  15. </button>
  16. <button title="load test participants" onclick="loadTest()">
  17. <img src='images/random.svg' width="24px"/>
  18. </button>
  19. <button title="add participant" onclick="addParticipant()">
  20. <img src='images/add.svg' />
  21. </button>
  22. <button id="btn-do-it" title="run" onclick="run()" disabled>
  23. <img src="images/play.svg"/>
  24. </button>
  25. <input id="filechooser" type="file" onchange="loadParticipantsFromFile(this.files[0])"/>
  26. <input type="radio" name="display-mode" onchange="outputChanged(0)" id="participants-radio" checked disabled/>Participants output
  27. <input type="radio" name="display-mode" onchange="outputChanged(1)" id="rounds-radio" disabled/>Rounds output
  28. </div>
  29. <div id="settings">
  30. <div>
  31. <label><img title="Table/Group size" src="images/group.svg"></label>
  32. <input title="Table/Group size" onchange="groupSizeChanged(this.value)" type="number" value="1" id="nbPerGroup" disabled/>
  33. </div>
  34. <div>
  35. <label>
  36. <img title="Number of rounds" src="images/round.svg">
  37. </label>
  38. <input type="number" title="Number of rounds" value="1" id="nbRounds" disabled/>
  39. </div>
  40. </div>
  41. </nav>
  42. <div id="participants"></div>
  43. <div id="rounds"></div>
  44. </body>
  45. </html>