-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitensB.html
105 lines (96 loc) · 5.56 KB
/
itensB.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title> Itens </title>
<!-- CSS -->
<link rel="shortcut icon" type="imagem/x-icon" href="img/debit-card.png">
<link href="materialize.css" type="text/css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="carrinho.css" type="text/css" rel="stylesheet">
</head>
<body>
<!-- NAVBAR -->
<header>
<nav class="white" role="navigation" style="box-shadow: none;">
<div class="nav-wrapper">
<form>
<div class="hide-on-med-and-down">
<a href="#" class="brand-logo center blue-text">Itens Da Festa Barbie</a>
</div>
</form>
</div>
</nav>
</header>
<main>
<script src="carrinho.js"></script>
<div class="container center">
<form class="form">
<div class="row">
<fieldset style="border: 1px solid lightgrey; padding: 1em">
<div class="col s10 l12">
<!-- PRODUTOS -->
<table class="responsive-table center">
<tbody id="carrinho">
<tr class="center" id="produto1">
<td>Decoração Barbie<br></td>
<!-- ADICIONAR AO CARRINHO -->
<!-- REMOVER PRODUTO DA LISTA -->
<td><i onclick="removerProduto(1)" class="material-icons blue-text text-darken-1" style="cursor: pointer">delete</i></td>
</tr>
<tr id="produto2">
<td>Fantasia Barbie<br></td>
<!-- ADICIONAR AO CARRINHO -->
<!-- REMOVER PRODUTO DA LISTA -->
<td><i onclick="removerProduto(2)" class="material-icons blue-text text-darken-1" style="cursor: pointer">delete</i></td>
</tr>
<tr id="produto3">
<td>Lembrancinha Barbie<br></td>
<!-- ADICIONAR AO CARRINHO -->
<td><i onclick="removerProduto(3)" class="material-icons blue-text text-darken-1" style="cursor: pointer">delete</i></td>
</tr>
<tr id="produto4">
<td>Boneco Barbie<br></td>
<td><i onclick="removerProduto(4)" class="material-icons blue-text text-darken-1" style="cursor: pointer">delete</i></td>
</tr>
<tr id="produto5">
<td>Cenário Barbie<br></td>
<td><i onclick="removerProduto(5)" class="material-icons blue-text text-darken-1" style="cursor: pointer">delete</i></td>
</tr>
<tr id="produto6">
<td>Balões Barbie<br></td>
<td><i onclick="removerProduto(6)" class="material-icons blue-text text-darken-1" style="cursor: pointer">delete</i></td>
</tr>
<tr id="produto7">
<td>Cenário Barbie<br></td>
<td><i onclick="removerProduto(7)" class="material-icons blue-text text-darken-1" style="cursor: pointer">delete</i></td>
</tr>
<tr id="produto7">
<td>Mesa Barbie<br></td>
<td><i onclick="removerProduto(7)" class="material-icons blue-text text-darken-1" style="cursor: pointer">delete</i></td>
</tr>
<tr id="produto8">
<td>Torre de Decoração<br></td>
<td><i onclick="removerProduto(8)" class="material-icons blue-text text-darken-1" style="cursor: pointer">delete</i></td>
</tr>
</tbody>
</table>
<br>
</div>
<!-- VALOR TOTAL DOS ITENS ADICIONADOS AO CARRINHO -->
<div class="s12 l6 offset-l6">
</div>
</fieldset>
<br>
<!-- FINALIZA A COMPRA E RESETA O CARRINHO -->
<div class="col s12 l4 offset-l4">
<button type="submit" class="btn waves-light waves-effect red white-text btn-voltar">Voltar</button>
<button type="button" class="btn waves-light waves-effect green white-text btn-confirmar">Confirmar</button>
</div>
</div>
</form>
</div>
</main>
</body>
</html>