-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
44 lines (41 loc) · 1.72 KB
/
index.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
<!doctype html>
<html>
<head>
<title>Found</title>
<meta charset="UTF-8">
<script src="jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="config.js"></script>
<link rel="stylesheet" href="pure.css">
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,700,300' rel='stylesheet' type='text/css'>
<script src="sweetalert.min.js"></script>
<link rel="stylesheet" type="text/css" href="sweetalert.css">
<link rel="stylesheet" type="text/css" href="main.css">
<script type="text/javascript" src="clarifai-basic.js"></script>
<script type="text/javascript" src="train-people.js"></script>
</head>
<body>
<div class="title">Found</div>
<div class="desc">Search and find your loved ones in crisis through machine learning
<br>
<a onclick="tutorial()">How this Works</a>
</div>
<div class="name-form pure-form">
<input type="text" id="contactname" placeholder="Contact Person Name">
<input type="text" id="email" placeholder="Contact Person Email">
<button class="pure-button pure-button-primary" onclick="emailSubmit()">Submit Contact Person</button>
<br>
<br>
<input type="text" id="name" placeholder="Name">
<button class="pure-button pure-button-primary" onclick="nameSubmit()">Submit Name</button>
<br>
<br>
<button class="pure-button pure-button-primary sig" onclick="trainPerson()">Add Loved One</button>
<button class="pure-button pure-button-primary sig" onclick="testPerson()">Found Loved One</button>
</div>
<div class="image-form">
<input type="file" id="file-input">
<br>
<canvas id="canvas" width="600px" height="400px"></canvas>
</div>
</body>
</html>