-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·63 lines (57 loc) · 3.17 KB
/
index.html
File metadata and controls
executable file
·63 lines (57 loc) · 3.17 KB
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
<!doctype html>
<html class="no-js" dir="ltr">
test
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cloud-POS </title>
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/app.css">
<link href="https://fonts.googleapis.com/css?family=Poiret+One" rel="stylesheet">
<script src="js/browserMqtt.js"></script>
</head>
<body>
<div class="row text-center">
<h1>Nuu-CSIE Cloud-POS</h1>
</div>
<div class="row">
<div class="column small-12 medium-8 text-center">
<div class="item column small-6 medium-3"><img src="./product/img/1.jpg"><span>milk_tea</span><span>50</span></div>
<div class="item column small-6 medium-3"><img src="./product/img/2.jpg"><span>lemon_tea</span><span>60</span></div>
<div class="item column small-6 medium-3"><img src="./product/img/3.jpg"><span>red_tea</span><span>40</span></div>
<div class="item column small-6 medium-3"><img src="./product/img/4.jpg"><span>fruit_tea</span><span>120</span></div>
<div class="item column small-6 medium-3"><img src="./product/img/5.jpg"><span>susi</span><span>200</span></div>
<div class="item column small-6 medium-3"><img src="./product/img/6.jpg"><span>steak</span><span>250</span></div>
<div class="item column small-6 medium-3"><img src="./product/img/7.jpg"><span>hot_pot</span><span>380</span></div>
<div class="item column small-6 medium-3"><img src="./product/img/8.jpg"><span>coffee</span><span>80</span></div>
<div class="item column small-6 medium-3"><img src="./product/img/9.jpg"><span>water_mellon_juice</span><span>50</span></div>
<div class="item column small-6 medium-3"><img src="./product/img/10.jpg"><span>fried_rice</span><span>70</span></div>
<div class="item column small-6 medium-3"><img src="./product/img/11.jpg"><span>Pizza</span><span>99</span></div>
<div class="item column small-6 medium-3"><img src="./product/img/12.jpg"><span>chicken</span><span>0</span></div>
</div>
<div class="column small-12 medium-4">
<div id="order"></div>
<div id="list"></div>
<hr>
<div class="row listItem">
<div class="column small-6" id="total"></div>
<div id="paybtn" class="column small-6 text-center" type="button" onclick="paybtn()">結帳</div>
</div>
</div>
<form action="do.php" method="POST">
<input type="text" id="resprice" name="resprice" />
<input type="text" id="resitem" name="resitem" />
<input type="submit" value="送出單號">
</form>
</div>
<form action="select.php" method="POST">
<input type="submit" value="查詢訂單">
</form>
<footer></footer>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/vendor/foundation.js"></script>
<script src="js/app.js"></script>
</body>
</html>