summaryrefslogtreecommitdiffstats
path: root/assets/index.html
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-09-26 17:31:16 -0500
committerToby Vincent <tobyv@tobyvin.dev>2024-09-26 17:31:16 -0500
commitfd992d7e3c03f37fbcafe9d3f26c72a2ead3b2a7 (patch)
treef3e29427d1bbe4a8d6e050abbd9f66afb5fa2152 /assets/index.html
parentcbfca14b38806798847e3f2008038b25194a9b8b (diff)
feat!: impl full api
Diffstat (limited to 'assets/index.html')
-rw-r--r--assets/index.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/assets/index.html b/assets/index.html
new file mode 100644
index 0000000..c168318
--- /dev/null
+++ b/assets/index.html
@@ -0,0 +1,30 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>status.tobyvin.dev</title>
+ <link rel="stylesheet" type="text/css" href="index.css" />
+ <script src="index.js"></script>
+ </head>
+ <body>
+ <main>
+ <header>
+ <hgroup>
+ <h1>tobyvin.dev Status</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>