Crosstable

A simple web-app for tournament-crosstables, for example in chess round tournament (each vs each).
git clone git://git.oshgnacknak.de/Crosstable.git
Log | Files | Refs | README

index.html (776B)


      1 <!DOCTYPE html>
      2 <html lang="en" dir="ltr">
      3 
      4 <head>
      5   <meta charset="utf-8">
      6   <link rel="stylesheet" href="style.css">
      7   <title>Crosstable</title>
      8 </head>
      9 
     10 <body>
     11   <header>
     12     <h1>Crosstable</h1>
     13   </header>
     14 
     15   <noscript>
     16     <h1>Sorry, JavaScript is required</h1>
     17   </noscript>
     18 
     19   <p>
     20     Name: <input id="player_name_input" type="text" value="">
     21     <button id="player_add_button">Add Player</button>
     22     <br>
     23     Nr: <input id="player_id_input" type="number" value="">
     24     <button id="player_remove_button">Remove Player</button>
     25   </p>
     26 
     27   <p>
     28     <table id="player_table" class="printable" border="1" cellpadding="0" cellspacing="0" >
     29     </table>
     30   </p>
     31   <script type="module" src="main.js" charset="utf-8"></script>
     32 </body>
     33 
     34 </html>