heissepreise/site/cart.html
2023-05-27 22:46:59 +02:00

48 lines
1.9 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="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="column">
<h2>Heisse Preise</h2>
<div class="filters">
<a href="index.html">Produktsuche</a>
<a href="changes.html">Tagespreisänderungen</a>
<a href="carts.html">Warenkörbe</a>
</div>
<div id="cart" class="cart column">
<h3 id="cartname"></h3>
<input type="button" id="save" value="Speichern" class="hide">
<canvas id="chart"></canvas>
<div class="filters" style="margin-top: 1em;">
<label><input type="checkbox" id="sum" checked> Warenkorb Preissumme</label>
</div>
<hr>
<input id="filter" type="text" style="max-width: 800px; width: 100%; margin-bottom: 1em;" placeholder="Filtern...">
<div class="filters">
<label><input id="billa" type="checkbox" checked="true"> Billa</label>
<label><input id="spar" type="checkbox" checked="true"> Spar</label>
<label><input id="hofer" type="checkbox" checked="true"> Hofer</label>
<label><input id="dm" type="checkbox" checked="true"> DM</label>
<label><input id="lidl" type="checkbox" checked="true"> Lidl</label>
<label><input id="mpreis" type="checkbox" checked="true"> MPREIS</label>
</div>
<div id="numitems"></div>
<table id="cartitems"></table>
</div>
<div id="search" class="column"></div>
</div>
<script src="utils.js"></script>
<script src="alasql.js"></script>
<script src="chart.js"></script>
<script src="cart.js"></script>
</body>
</html>