2024-08-04 10:29:43 +02:00
|
|
|
<!DOCTYPE html>
|
2024-08-04 17:59:05 +02:00
|
|
|
<html data-theme="light">
|
2024-08-04 10:29:43 +02:00
|
|
|
|
2024-08-04 17:59:05 +02:00
|
|
|
<head>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2024-08-04 10:29:43 +02:00
|
|
|
<title>
|
|
|
|
|
Toddler Shop
|
|
|
|
|
</title>
|
|
|
|
|
<script src="/scripts/main.js"></script>
|
2024-08-04 17:59:05 +02:00
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css">
|
2024-08-04 10:29:43 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body onload="loadProducts()">
|
2024-08-04 11:01:52 +02:00
|
|
|
<form action="" id="barcode_form">
|
|
|
|
|
<input id="barcode_input" type="text" autofocus>
|
|
|
|
|
<input type="submit" value="Submit">
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<img class="product_image">
|
2024-08-04 17:59:05 +02:00
|
|
|
|
|
|
|
|
<div class="columns">
|
|
|
|
|
|
|
|
|
|
<div class="column is-one-fifth product_placeholder">
|
|
|
|
|
<span class="icon-text">
|
|
|
|
|
<i><svg width="90" height="90">
|
|
|
|
|
<image class="product_image" xlink:href="" width="50" height="50"/>
|
|
|
|
|
</svg></i>
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
<span class="product_price">Home</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="column is-one-fifth product_placeholder">
|
|
|
|
|
<span class="icon-text">
|
|
|
|
|
<i><svg width="90" height="90">
|
|
|
|
|
<image class="product_image" xlink:href="" width="50" height="50"/>
|
|
|
|
|
</svg></i>
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
<span class="product_price">Home</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="column is-one-fifth product_placeholder">
|
|
|
|
|
<span class="icon-text">
|
|
|
|
|
<i><svg width="90" height="90">
|
|
|
|
|
<image class="product_image" xlink:href="" width="50" height="50"/>
|
|
|
|
|
</svg></i>
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
<span class="product_price">Home</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="column is-one-fifth product_placeholder">
|
|
|
|
|
<span class="icon-text">
|
|
|
|
|
<i><svg width="90" height="90">
|
|
|
|
|
<image class="product_image" xlink:href="" width="50" height="50"/>
|
|
|
|
|
</svg></i>
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
<span class="product_price">Home</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="column is-one-fifth product_placeholder">
|
|
|
|
|
<span class="icon-text">
|
|
|
|
|
<i><svg width="90" height="90">
|
|
|
|
|
<image class="product_image" xlink:href="" width="50" height="50"/>
|
|
|
|
|
</svg></i>
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
<span class="product_price">Home</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<button class="button is-success">Cash</button>
|
|
|
|
|
<button class="button is-success">Card</button>
|
|
|
|
|
|
2024-08-04 10:29:43 +02:00
|
|
|
</body>
|
2024-08-04 11:01:52 +02:00
|
|
|
|
|
|
|
|
|
2024-08-04 10:29:43 +02:00
|
|
|
</html>
|