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.
 
 
 
 
 
 

41 lines
1.4 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()">
  23. <img src="images/play.svg"/>
  24. </button>
  25. <input id="filechooser" type="file" onchange="loadParticipantsFromFile(this.files[0])"/>
  26. </div>
  27. <div id="settings">
  28. <div><label><img title="Table/Group size" src="images/group.svg"></label><input title="Table/Group size" type="number" value="4" id="nbPerGroup"/></div>
  29. <div>
  30. <label><img title="Number of rounds" src="images/round.svg"></label><input type="number" title="Number of rounds" value="6" id="nbRounds"/>
  31. </div>
  32. </div>
  33. </nav>
  34. <div id="participants"></div>
  35. <div id="rounds"></div>
  36. </body>
  37. </html>