toddler_shop_frontend/index.html

79 lines
2.6 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-05 17:03:10 +02:00
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
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
2024-08-05 17:03:10 +02:00
<div class="container text-center product_placeholder">
<div class="row">
<div class="col product_col">
<div class="card" style="width: 18rem;">
<img src="http://127.0.0.1:8000/icons/pizza" class="card-img-top product_image">
<div class="card-body">
<h5 class="card-title product_price">Card title</h5>
</div>
</div>
</div>
<div class="col product_col">
<div class="card" style="width: 18rem;">
<img src="http://127.0.0.1:8000/icons/banana" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
</div>
</div>
</div>
<div class="col product_col">
<div class="card" style="width: 18rem;">
<img src="..." class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
</div>
</div>
</div>
2024-08-04 17:59:05 +02:00
</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>
<button class="button is-success">
<i>
<svg width="90" height="90">
<image class="product_image" xlink:href="http://127.0.0.1:8000/icons/creditcard" width="50" height="50"/>
</svg>
</i>
</button>
<button class="button is-success">
<i>
<svg width="90" height="90">
<image class="product_image" xlink:href="http://127.0.0.1:8000/icons/cash" width="50" height="50"/>
</svg>
</i>
</button>
2024-08-04 17:59:05 +02:00
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>