summaryrefslogtreecommitdiffstats
path: root/assets/index.html
blob: b0a6c1806073e117e3ed8306afe6b1e617ea7e7d (plain)
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
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" type="text/css" href="index.css" />
    <script src="index.js"></script>
  </head>
  <body>
    <main>
      <header>
        <hgroup>
          <h1>SrvStat</h1>
        </hgroup>
      </header>
      <table>
        <tr id="status">
          <td><b>Status</b></td>
          <td id="issues">No issues detected</td>
        </tr>
      </table>
      <hr></hr>
      <table id="services"></table>
    </main>
  </body>
</html>