diff options
| author | Karan Jayachandra <mail@karanjayachandra.com> | 2025-11-15 14:30:38 +0100 |
|---|---|---|
| committer | Karan Jayachandra <mail@karanjayachandra.com> | 2025-11-15 14:30:38 +0100 |
| commit | cabac66d56e8912941cef976d69a4fd3ec9ad928 (patch) | |
| tree | cacc0cb661494525f626521c60cff166eb7c22b6 /index.html | |
| parent | 56eb065a8165b3f508a35734adbb00c76bee012a (diff) | |
Working on improving tables
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 36 |
1 files changed, 21 insertions, 15 deletions
@@ -24,9 +24,9 @@ </nav> <div class="container"> <section class="section"> + <h1 class="title" id="Game_description"></h1> <table class="table is-fullwidth"> <thead> - <tr><th colspan="5"><div id="Game_description"></div></th></tr> <tr> <th>Court</th> <th colspan='2' style="text-align: center;">Team 1</th> @@ -48,7 +48,6 @@ </select> </div> <button class="button is-medium is-dark" id="confirm">Confirm</button> - <button class="button is-medium is-danger" id="reset">Reset</button> </div> </section> <section class="section"> @@ -64,20 +63,27 @@ <div id="Guest_list" class="button-grid"></div> </section> <section class="section"> - <h1 class="title">Player Update</h1> - <div id="player-load" class="file is-danger has-name is-boxed"> - <label class="file-label"> - <input class="file-input" type="file" name="players" accept=".csv"/> - <span class="file-cta"> - <span class="file-icon"> - <i class="fa-solid fa-upload"></i> - </span> - <span class="file-label"> Update players... </span> - </span> - <span class="file-name"> No file selected... </span> - </label> + <h1 class="title">Admin</h1> + <h1 class="subtitle">Changes here are permanent and cannot be reverted.</h1> + <div class="field is-grouped is-grouped-centered"> + <button class="button is-medium is-danger" id="reset"> + Reset Session + </button> </div> - </section> + <div class="field is-grouped is-grouped-centered"> + <div id="player-load" class="file is-danger is-boxed is-medium"> + <label class="file-label"> + <input class="file-input" type="file" name="players" accept=".csv" /> + <span class="file-cta"> + <span class="file-icon"> + <i class="fa-solid fa-upload"></i> + </span> + <span class="file-label">Update Regulars</span> + </span> + </label> + </div> + </div> + </section> </div> </section> <script src="src/main.js" type="module"></script> |
