-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (76 loc) · 2.52 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>Playground</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<link href="./style.css" rel="stylesheet" />
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"
></script>
<script type="module" src="./index.js"></script>
</head>
<body class="p-5">
<div class="container">
<div id="items-list-container">
<h3>I tuoi articoli</h3>
<ul class="list-group" id="items-list">
<li class="list-group-item item">
<div
class="d-flex flex-row d-flex justify-content-between align-items-center"
>
<div class="item-name">motherboard</div>
<div
class="d-flex flex-row align-items-center justify-content-end flex-wrap"
>
<span class="ms-2 d-flex flex-row align-items-center">
<label class="me-1" for="quantity">qty:</label>
<input
class="form-control item-quantity"
value="1"
type="number"
style="width: 70px"
/>
</span>
<span class="ms-2">
<span class="item-price">1500€</span>
<span class="item-discount">(-300€)</span>
</span>
</div>
</div>
</li>
</ul>
</div>
<div class="mt-5">
<h3>Totale ordine</h3>
<div class="order-summary">
<div>
<div class="d-flex justify-content-between">
<span>Net Total:</span>
<span>1200€</span>
</div>
<div class="d-flex justify-content-between">
<span>VAT:</span>
<span>200€</span>
</div>
<div class="d-flex justify-content-between">
<span>Transport:</span>
<span>15€</span>
</div>
<hr />
<div class="d-flex justify-content-between">
<span>Total:</span>
<span>1700€</span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>