-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage_order.html
33 lines (33 loc) · 1.33 KB
/
page_order.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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="css/main.css"/>
<title>PB-KIOSK</title>
</head>
<body>
<div id="first-container">
<img src="assets/PB_Marque_Emblem.png" style="margin-top: 7%"/>
<p style="font-size: 150%; color: black" >PB KIOSK<br>파리바게트 키오스크</p>
<div id="webcam-container"></div>
<div id="label-container"></div>
<p>
<button id="btn" type="button" onclick="changeBtnState()">Start</button>
</p>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@teachablemachine/[email protected]/dist/teachablemachine-image.min.js"></script>
<script src="js/model.js"></script>
</div>
<button id="orderBtn" type="button" onclick="popupForm()">💰</button>
<script type="text/javascript">
function popupForm() {
var url = "popup/popup_form.html";
var name = "childPopupForm";
var option = "width = 500, height = 500, top = 100, left = 200, location = no";
window.open(url, name, option);
}
</script>
</body>
</html>