-
Notifications
You must be signed in to change notification settings - Fork 0
/
comanda.html
136 lines (102 loc) · 5.31 KB
/
comanda.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>e-Comanda - Pedidos</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="styleComanda.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oleo+Script+Swash+Caps&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href="./tables.html" target="_self"><img src="./Images/arrow-left-solid.svg" alt=""></a>
<a href="./index.html" target="_self"><h1>Pé sujo</h1></a>
<a href="./index.html" target="_self" id="btnlogout">Logout</a>
</header>
<form class="container">
<div class="info">
<p id="mesa">Mesa: </p>
<p id="garcom">Garçom: </p>
<p id="data">Data: </p>
</div>
<div class="itens cervejas">
<label for="brahma600">Brahma (600ml):</label>
<input type="number" id="brahma600" min="0">
<label for="brahma1000">Brahma (1000ml):</label>
<input type="number" id="brahma1000" min="0">
<label for="devassa600">Devassa (600ml):</label>
<input type="number" id="devassa600" min="0">
<label for="heinekenlong">Heineken (Long neck):</label>
<input type="number" id="heinekenlong" min="0">
<label for="heineken600">Heineken (600ml):</label>
<input type="number" id="heineken600" min="0">
</div>
<div class="itens refri">
<label for="guarana">Guaraná (lata):</label>
<input type="number" id="guarana" min="0">
<label for="Coca-cola">Coca-cola (lata):</label>
<input type="number" id="Coca-cola" min="0">
<label for="agua500">Água (500ml):</label>
<input type="number" id="agua500" min="0">
<label for="laranjaCopo">Suco de Laranja (300ml):</label>
<input type="number" id="laranjaCopo" min="0">
<label for="laranjaJarra">Suco de Laranja (Jarra):</label>
<input type="number" id="laranjaJarra" min="0">
</div>
<div class="itens pizza">
<label for="queijo">4 Queijos:</label>
<input type="number" id="queijo" min="0">
<label for="FrangoCat">Frango com Catupiry:</label>
<input type="number" id="frangoCat" min="0">
<label for="calabresa">Calabresa:</label>
<input type="number" id="calabresa" min="0">
<label for="atum">Atum:</label>
<input type="number" id="atum" min="0">
<label for="marguerita">Marguerita:</label>
<input type="number" id="marguerita" min="0">
<label for="nordestina">Nordestina:</label>
<input type="number" id="nordestina" min="0">
<label for="modaDaCasa">À moda da casa:</label>
<input type="number" id="modaDaCasa" min="0">
<label for="milho">Milho:</label>
<input type="number" id="milho" min="0">
<label for="brocolis">Brócolis:</label>
<input type="number" id="brocolis" min="0">
<label for="lombo">Lombo Canadense:</label>
<input type="number" id="lombo" min="0">
</div>
<div class="itens hamburguer">
<label for="xburger">X-Burguer:</label>
<input type="number" id="xburger" min="0">
<label for="xegg">X-Egg:</label>
<input type="number" id="xegg" min="0">
<label for="xfrango">X-Frango:</label>
<input type="number" id="xfrango" min="0">
<label for="xcalabresa">X-Calabresa:</label>
<input type="number" id="xcalabresa" min="0">
<label for="xatum">X-Atum:</label>
<input type="number" id="xatum" min="0">
<label for="xsalada">X-Salada:</label>
<input type="number" id="xsalada" min="0">
<label for="xnordestina">X-Nordestina:</label>
<input type="number" id="xnordestina" min="0">
<label for="xtudo">X-Tudo:</label>
<input type="number" id="xtudo" min="0">
<label for="xtudo2">X-Tudo Dobrado:</label>
<input type="number" id="xtudo2" min="0">
<label for="xespecial">X-Especial:</label>
<input type="number" id="xespecial" min="0">
</div>
<textarea id="obs" cols="30" rows="5" placeholder="Observações..."></textarea>
<button type="reset" class="pedidosReset">Limpar</button>
<button type="" class="pedidosProx">Próximo</button>
<button type="" class="fecharComanda">Fechar conta</button>
<div id="totalDaConta">TOTAL:</div>
</form>
<script src="scriptComanda.js"></script>
</body>
</html>