aboutsummaryrefslogtreecommitdiffstats
path: root/public/map.html
blob: d38a015a36f245971d458d3b38f2d9627a446ace (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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>