-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPedidos.html
147 lines (147 loc) · 8.15 KB
/
Pedidos.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<html>
<head>
<link rel="stylesheet" href="styles\02-stylesheet.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato|Rubik">
</head>
<body>
<table>
<tr>
<th>
<header class="imgLogo">
<img src="images/AmigoUrso_topo.png" alt="The logo is a bear holding a honey pot">
</header>
</th>
<th>
<address class="ender">
<p>Rua Apis Mellifera, 1</p>
<p>Tel: (21) 91122-3344</p>
<p>contato@zangao.com.br</p>
</address>
</th>
</tr>
<tr>
<th>
<nav>
<ul>
<li><a href="AmigoUrso.html" target="blank">Apresentação</a></li>
<li><a href="Demel.html" target="blank">Mistura de Mel</a></li>
<li><a href="Dabel.html" target="blank">Direto da abelha</a></li>
<li><a href="Pedidos.html" target="blank">Pedidos</a></li>
</ul>
</nav>
</th>
<th>
<form class="divCompras">
Compras
<fieldset class="">
<legend><label for="identificação">
Identificação
</label></legend>
<div class="divLinha">
<label for="nome">Nome:</label>
<input type="text" name="nome" class="inpGrande">
</div>
<div class="divLinha">
<label for="email">E-mail:</label>
<input type="email" name="email" class="inpGrande">
</div>
<div class="colPri">
<div class="divLinha">
<label for="endereço">Endereço:</label>
<textarea name="endereço" class="inpEnder"></textarea>
</div>
<div class="divLinha">
<label for="telefone">Telefone:</label>
<input type="tel" name="tel" class="inpTelef">
</div>
<div class="divLinha">
<label for="celular">Celular:</label>
<input type="tel" name="tel" class="inpMedio">
</div>
</div>
</div>
<div class="elemDir">
<fieldset>
<legend><label for="genero">Genero:</label></legend>
<input type="radio" value="masculino" name="genero">Mas
<input type="radio" value="feminino" name="genero">Fem
<input type="radio" value="outro" name="genero">Outro
</fieldset>
<fieldset>
<legend><label for="nascimento">Nascimento:</label></legend>
<input type="number" max="31" class="numDD">/<input type="number" max="12" class="numDD">/<input type="number" max="2021" class="numQD">
</fieldset>
</div>
</fieldset>
<fieldset>
<legend><label for="seleção de produtos e pagamento">
Seleção de Produtos e Pagamento
</label></legend>
<div class="">
<select name="linhaProdSel" class="linhaProdSel">
<option disabled="" selected="" value="">
-----
</option>
<optgroup label="Iogurte">
<option value="natural">Natural com mel (150g)</option>
<option value="zero">Zero lactose (150g)</option>
</optgroup>
<optgroup label="Balas">
<option value="gengibre">Gengibre e Mel (60g)</option>
<option value="anis">Mel e Anis (60g)</option>
</optgroup>
<optgroup label="Barra de Cereal">
<option value="granola">Mel e Granola (25g)</option>
</optgroup>
<optgroup label="Pote de Mel">
<option value="florSilvestres">Mel Flores Silvestres (350g)</option>
<option value="eucalipto">Mel de Eucalipto (450g)</option>
<option value="florLaranjeira">Mel Flor de Laranjeira (750g)</option>
</optgroup>
<optgroup label="Própolis">
<option value="extrato">Extrato (30mL)</option>
<option value="spray">Spray</option>
</optgroup>
</select>
</div>
<button>Comprar</button>
<div class="colPriCompras cartaoEReadonly">
<div>
<fieldset class="fsEsq">
<legend><label for="cartão">
Cartão
</label></legend>
<div class="colLabCrd">
<label for="bandeira">Bandeira:</label>
<input type="radio" value="visa" name="bandeira">Visa
<input type="radio" value="master" name="bandeira">Master
<input type="radio" value="elo" checked="" name="bandeira">Elo
</div>
<div class="colLabCrd">
<label for="validade">Validade:</label>
<input type="number" max="12" class="numDD">/<input type="number" max="2021" class="numQD">
</div>
<div class="colLabCrd">
<label for="número">Número:</label>
<input type="number" class="inpNCC">
</div>
</fieldset>
</div>
<div>
<textarea readonly class="listaCompras"></textarea>
</div>
</div>
<div class="colPriPag">
<label for="valor">Valor R$</label><input type="text" readonly>
</div>
</fieldset>
<div class="botoes">
<button type="submit" value="enviar">Enviar</button>
<button type="reset" value="limpar">Limpar</button>
</div>
</form>
</th>
</tr>
</table>
</body>
</html>