diff options
| author | Maks Jopek <maksymilian.jopek@prym-soft.pl> | 2021-04-04 01:53:24 +0200 |
|---|---|---|
| committer | Maks Jopek <maksymilian.jopek@prym-soft.pl> | 2021-04-04 01:53:24 +0200 |
| commit | 292257d627bd1dfeafd772ac6457e2f54c2b73ba (patch) | |
| tree | b7962648b87ab709e8529075ce912950019adaee /public/map.html | |
| parent | eee4ee32dd667ed6efd31ddcf8f64217b7e16b60 (diff) | |
| download | fia-292257d627bd1dfeafd772ac6457e2f54c2b73ba.tar.gz fia-292257d627bd1dfeafd772ac6457e2f54c2b73ba.tar.zst fia-292257d627bd1dfeafd772ac6457e2f54c2b73ba.zip | |
One step closer to the end
Diffstat (limited to 'public/map.html')
| -rw-r--r-- | public/map.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/public/map.html b/public/map.html new file mode 100644 index 0000000..d38a015 --- /dev/null +++ b/public/map.html @@ -0,0 +1,43 @@ +<div class="container"> + <table class="table table-dark table-sm"> + <tbody> + <tr> + <td class="bg-primary rounded-pill text-center"> + {{ player.name }} + </td> + <td></td> + <td class="bg-danger rounded-pill text-center"> + {{ player.name }} + </td> + <td></td> + <td class="bg-success rounded-pill text-center"> + {{ player.name }} + </td> + <td></td> + <td class="bg-warning rounded-pill text-center"> + {{ player.name }} + </td> + <td></td> + <td class="text-center rounded-pill"> + <div class="form-check form-switch text-center"> + <input + class="form-check-input" + type="checkbox" + id="flexSwitchCheckDefault" + /> + <label class="form-check-label" for="flexSwitchCheckDefault"> + Jag är redo + </label> + </div> + </td> + </tr> + </tbody> + </table> + <div class="container-flex text-center"> + <canvas id="map" width="600" height="600" class="border border-danger"> + Din webbläsare stöder inte canvas, vilket betyder att du inte kan spela + fia</canvas + > + </div> + </div> +
\ No newline at end of file |
