summaryrefslogtreecommitdiffstats
path: root/web/index.html
blob: fe9529fe243d21f5cd8a8ce0b9f74d3eb0a022f5 (about) (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
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="anonymous" referrerpolicy="no-referrer" />
    <link rel="stylesheet" href="style.css" />

    <title>Routemon</title>
  </head>
  <body>
    <div id="map">
    </div>

    <form name="gpx-upload-form" class="box">
      <div>
        <label for="gpx-file">Upload een GPX-bestand:</label>
        <input type="file" id="gpx-file-input" name="gpx-file" accept="application/gpx+xml,.gpx" autofocus />
      </div>
      <div>
        <input type="submit" value="Opsturen" />
      </div>
    </form>

    <div id="sysinfo" class="box">
      <h3>Routemon</h3>
      <a href="https://codeberg.org/rutgerbrf/routemon">Broncode</a>
      <details>
        <summary>
          <span>Systeeminformatie</span>
        </summary>
        <table>
          <tr>
            <td class="help-cursor" title="Publicatietijdstip van ingeladen DATEX II-situatiepublicatie (van NDW)">Situatiepublicatie van</td>
            <td id="situation-publication-of">&lt;onbekend&gt;</td>
          </tr>
        </table>
      </details>
    </div>

    <dialog class="box">
      <h3 id="dialog-title"></h3>
      <p id="dialog-message"></p>
      <details>
        <summary>Meer informatie</summary>
        <small id="dialog-more-info"></small>
      </details>
      <button autofocus>Sluiten</button>
    </dialog>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
    <script src="index.js"></script>
  </body>
</html>