Du kannst nicht mehr als 25 Themen auswählen
			Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							 | 
							- <?xml version="1.0" encoding="UTF-8" ?>
 - <!DOCTYPE html>
 - <html xmlns="http://www.w3.org/1999/xhtml">
 -   <head>
 -     <meta charset="utf-8" />
 -     <title>Round table groups generator</title>
 -     <link href="css/app.css" rel="stylesheet">
 -     <script src="app.js"></script>
 -   </head>
 -   <body>
 -     <nav>
 -       <div>
 -         <button title="load participants from file" onclick="loadParticipantsFileChooser()">
 -           <img src='images/upload.svg' />
 -         </button>
 -         <button title="load test participants" onclick="loadTest()">
 -           <img src='images/random.svg' width="24px"/>
 -         </button>
 -         <button title="add participant" onclick="addParticipant()">
 -           <img src='images/add.svg' />
 -         </button>
 -         <button id="btn-do-it" title="run" onclick="run()" disabled>
 -           <img src="images/play.svg"/>
 -         </button>
 -         <input id="filechooser" type="file" onchange="loadParticipantsFromFile(this.files[0])"/>
 -       </div>
 -       <div id="settings">
 -         <div>
 -           <label><img title="Table/Group size" src="images/group.svg"></label>
 -           <input title="Table/Group size" onchange="groupSizeChanged(this.value)" type="number" value="1" id="nbPerGroup" disabled/>
 -         </div>
 -         <div>
 -           <label>
 -             <img title="Number of rounds" src="images/round.svg">
 -           </label>
 -           <input type="number" title="Number of rounds" value="1" id="nbRounds" disabled/>
 -         </div>
 -       </div>
 -     </nav>
 - 
 -     <div id="participants"></div>
 - 
 -     <div id="rounds"></div>
 - 
 -   </body>
 - </html>
 
 
  |