Initial commit with action
Some checks failed
Test compiling project / test (push) Failing after 33s

This commit is contained in:
2023-10-02 15:30:30 +02:00
commit bbe5bfdcee
15 changed files with 888 additions and 0 deletions

60
data/data_export.html Normal file
View File

@@ -0,0 +1,60 @@
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="/chota.css">
<script>
if (window.matchMedia &&
window.matchMedia('(prefers-color-scheme: dark)').matches) {
document.body.classList.add('dark');
}
</script>
</head>
<body>
<div class="container">
<nav class="nav" style="margin-bottom: 50px;">
<div class="nav-left">
<a class="brand" href="#">Watermeter</a>
<div class="tabs">
<a href="/">Status</a>
<a href="/settings">Settings</a>
<a class="active" href="/export">Data export</a>
</div>
</div>
<div class="nav-right">
<a class="button outline">Button</a>
</div>
</nav>
<div class="card">
<header>
<h4>JSON</h4>
</header>
Hello json
</div>
<div class="card">
<header>
<h4>MQTT</h4>
</header>
Hello mqtt
</div>
<div class="card">
<header>
<h4>Email alert</h4>
</header>
Hello json
</div>
</div>
</body>
<style>
.card {
margin-bottom: 10px;
}
</style>