-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirmation.html
131 lines (117 loc) · 4.5 KB
/
confirmation.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="css/confirmation.css">
<script src="https://code.iconify.design/1/1.0.7/iconify.min.js"></script>
</head>
<body>
<div id="container">
<div>
<span class="iconify" data-icon="majesticons-badge-check" data-inline="false"></span>
</div>
<h1>Yes baby, thank you!</h1>
<p>Sua compra foi realizada com sucesso, veja os detalhes abaixo:</p>
<div id="resumo">
<h1>Resumo do Pedido</h1>
<hr>
<div id="pedido">
<span class="iconify" id="icon-info" data-icon="bi-file-earmark-medical-fill"
data-inline="false"></span>
<div id="info">
<div>
<br>
<strong>Nome: </strong>
<br>
<p id="nome"></p>
<br>
<strong>Email:</strong>
<br>
<p id="email"></p>
<br>
</div>
<div>
<br>
<strong>Número do Pedido:</strong>
<br>
<p id="numpedido"></p>
<br>
<strong>Data do Pedido:</strong>
<br>
<p id="data"></p>
<br>
</div>
</div>
</div>
<hr>
<div id="organizer">
<div id="address">
<span class="iconify icon" data-icon="clarity:map-outline-alerted" data-inline="false"></span>
<p>Endereço de Entrega:</p>
<div id="address-info">
<strong>Logradouro: </strong>
<br>
<p id="rua"></p>
<strong>Bairro:</strong>
<br>
<p id="bairro"></p>
<strong>CEP: </strong>
<br>
<p id="cep"></p>
<strong>Cidade:</strong>
<br>
<p id="cidade"></p>
<strong>País:</strong>
<br>
<p id="pais">Brasil</p>
</div>
</div>
<hr>
<div id="price">
<span class="iconify icon" data-icon="fa-solid:money-check-alt" data-inline="false"></span>
<p>Dados de Pagamento:</p>
<div id="price-info">
<strong>Subtotal: </strong>
<br>
<p id="subtotal"></p>
<br>
<strong>Frete:</strong>
<br>
<p id="frete"></p>
<br>
<strong>Total:</strong>
<br>
<p id="total"></p>
<br>
</div>
</div>
</div>
<hr>
<div id="products">
<span class="iconify icon" data-icon="bi:box-seam" data-inline="false"></span>
<table id="products-info">
<thead>
<th>Produto</th>
<th>Qtd</th>
<th>Preço Unit.</th>
<th>Total</th>
</thead>
<tbody id="tbody">
<!--<tr>
<td>aaaa</td>
<td>12</td>
<td>1234</td>
<td>123456</td>
</tr> !-->
</tbody>
</table>
</div>
<p id="tempoFrete"></p>
<button id="confirm">
<span class="iconify return" data-icon="akar-icons:arrow-back-thick-fill" data-inline="false"></span>
Voltar a tela inicial
</button>
</div>
</div>
<script type="text/javascript" src="js/util.js"> </script>
<script type="text/javascript" src="js/confirmation/confirmation.js"> </script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</body>