heissepreise/site/index.html
Christian Tschugg 9f287e10e5 Add 🔥 as favicon
2023-06-02 08:04:48 +02:00

45 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Heisse Preise</title>
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%2210 0 100 100%22><text y=%22.90em%22 font-size=%2290%22>🔥</text></svg>"
/>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="column" style="max-width: 1000px">
<h2>Heisse Preise</h2>
<div class="filters">
<a href="index.html"><strong>Produktsuche</strong></a>
<a href="changes.html">Tagespreisänderungen</a>
<a href="carts.html">Warenkörbe</a>
</div>
<div id="chart" class="column hide" style="width: 80%">
<canvas></canvas>
<div class="filters" style="margin-top: 1em;">
<label><input type="checkbox" id="sum"> Preissumme Gesamt</label>
<label><input type="checkbox" id="sumstores"> Preissumme pro Kette</label>
<label><input type="checkbox" id="todayonly"> Nur heutige Preise</label>
</div>
<div>
<label>Von <input id="start" type="date"></label>
<label>Bis <input id="end"type="date"></label>
</div>
</div>
<div id="search" class="column">
</div>
</div>
<script src="alasql.js"></script>
<script src="chart.js"></script>
<script src="utils.js"></script>
<script src="main.js"></script>
</body>
</html>