toddler_shop_frontend/index.html

86 lines
2.7 KiB
HTML
Raw Normal View History

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>
2024-08-05 13:14:24 +02:00
</div>
2024-08-04 17:59:05 +02:00
2024-08-05 13:14:24 +02:00
<p id="totalprice">&euro; 0</p>
<button class="button is-success"><i><svg width="90" height="90">
<image class="product_image" xlink:href="http://127.0.0.1:8000/icons/cart" width="50" height="50"/>
</svg></i></button>
2024-08-04 17:59:05 +02:00
<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>