-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarrinho.xhtml
93 lines (89 loc) · 2.49 KB
/
carrinho.xhtml
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<link rel="shortcut icon" type="image/png" href="img/favicon.ico"/>
<title>Wizard Games</title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/estilo.css" />
<link rel="stylesheet" href="css/socialmedia.css" />
<script src="js/jquery.min.js" type="text/javascript" />
<script src="js/bootstrap.min.js" type="text/javascript" />
<script src="js/script.js" type="text/javascript" />
<script src="js/includes.js" type="text/javascript" />
</head>
<body>
<script type="text/javascript">
incluirMenu();
incluirCabecalho();
incluirAudios();
habilitaMenu();
</script>
<div id="conteiner">
<div id="conteudo-pagina">
<!-- Corpo -->
<div id="corpo" class="secao carrinho">
<span>CARRINHO</span>
<div class="post">
<div class="row">
<div class="col-lg-12">
<h2>Itens no Carrinho</h2>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="table-responsive">
<table>
<thead>
<tr>
<th>Foto</th>
<th>Nome</th>
<th>Preço</th>
<th>Ações</th>
</tr>
</thead>
<tbody>
<tr id="linha1">
<td>
<img src="img/produtos/produto1.jpg" alt="Foto Indisponível" />
</td>
<td>Watch Dogs (Xbox 360)</td>
<td>R$ 89,90</td>
<td>
<span class="glyphicon glyphicon-remove"
data-toggle="tooltip" data-original-title="Remover item"
onclick="removerItemCarrinho(1)"></span>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Foto</th>
<th>Nome</th>
<th>Preço</th>
<th>Ações</th>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
<h4>*Frete gratuito para qualquer país</h4>
<br />
<div class="row">
<div class="col-lg-12">
<button class="btn btn-primary" onclick="finalizarCompra()">Finalizar Compra</button>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
incluirRodape();
incluirModal();
</script>
</body>
</html>