summaryrefslogtreecommitdiff
path: root/fw/app/src/index.html
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-04-12 12:11:33 +0200
committerxengineering <me@xengineering.eu>2025-04-12 12:11:33 +0200
commit3b857fd34c9e92eed346b7ea73706f50a193fe14 (patch)
tree39c72df3f1a18fc6ab7b513116afd5d460e1ff87 /fw/app/src/index.html
parentddcf8559d4fbb9bd6942ac46d5c4970ef08b16d1 (diff)
downloadiot-contact-3b857fd34c9e92eed346b7ea73706f50a193fe14.tar
iot-contact-3b857fd34c9e92eed346b7ea73706f50a193fe14.tar.zst
iot-contact-3b857fd34c9e92eed346b7ea73706f50a193fe14.zip
fw: app: Re-design web page
This enables simple.css also for the device-hosted website and restructures the HTML a bit.
Diffstat (limited to 'fw/app/src/index.html')
-rw-r--r--fw/app/src/index.html17
1 files changed, 11 insertions, 6 deletions
diff --git a/fw/app/src/index.html b/fw/app/src/index.html
index 5817818..d4ccd45 100644
--- a/fw/app/src/index.html
+++ b/fw/app/src/index.html
@@ -8,14 +8,19 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
- <title>iot-contact</title>
+ <title>IoT contact</title>
+ <link rel="stylesheet" type="text/css" href="simple.css">
<script type="text/javascript" src="/iot-contact.js"></script>
</head>
<body>
- <h4>iot-contact</h4>
- <p>
- <label for="heartbeat">Heartbeat</label>
- <meter id="heartbeat" min="0" max="1" value="0"></meter>
- </p>
+ <header>
+ <h1>IoT contact</h1>
+ </header>
+ <main>
+ <p class="notice">
+ <label for="heartbeat">Heartbeat</label>
+ <meter id="heartbeat" min="0" max="1" value="0"></meter>
+ </p>
+ </main>
</body>
</html>