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

37 lines
1.2 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">
<h2>Heisse Preise</h2>
<div class="filters">
<a href="index.html">Produktsuche</a>
<a href="changes.html">Tagespreisänderungen</a>
<a href="carts.html"><strong>Warenkörbe</strong></a>
</div>
<div class="filters">
<button id="newcart">Neuer Warenkorb</button>
<button id="export">Exportieren</button>
<button id="import">Importieren</button>
</div>
<table id="carts" class="carts"></table>
</div>
<input type="file" id="fileInput" style="display: none;">
<script src="alasql.js"></script>
<script src="utils.js"></script>
<script src="carts.js"></script>
</body>
</html>