-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadd.html
32 lines (25 loc) · 995 Bytes
/
add.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
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Returning Customer Detector</title>
<link rel="stylesheet" href="./assets/style.css" type="text/css">
</head>
<body>
<div id="results">Customers photo will appear here...</div>
<h1>Add new customer</h1>
<p><a class="red" href="index.html">< Back to detection mode</a></p>
<div id="camera"></div>
<form>
<p style="color: red;">Add returning customer</p>
<label for="name">
<input type="text" id="name" name="name" /> Customer name / ID
</label>
<input type=button value="Submit" onClick="take_customer_snapshot()">
</form>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="./assets/webcam.min.js"></script>
<script type="text/javascript" src="./assets/jquery.facedetection.min.js"></script>
<script type="text/javascript" src="./assets/app.js"></script>
</body>
</html>