heissepreise/site/index.html
2023-05-18 18:14:51 +02:00

36 lines
1.3 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="main">
<h2>Heisse Preise</h2>
<div class="filters">
<a href="changes.html">Tagespreisänderungen</a>
<a href="carts.html">Warenkörbe</a>
</div>
<input id="search" class="search" type="text" placeholder="Produkte suchen...">
<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="eigenmarken" type="checkbox"> Nur CLEVER & S-BUDGET</label>
</div>
<div class="filters">
<label>Min € <input id="minprice" type="number" min="0" value="0"></label>
<label>Max € <input id="maxprice" type="number" min="0" value="100"></label>
<label><input id="exact" type="checkbox"> Exaktes Wort</label>
</div>
<table id="result"></table>
</div>
<script src="utils.js"></script>
<script src="main.js"></script>
</body>
</html>