-
Notifications
You must be signed in to change notification settings - Fork 0
/
container.html
48 lines (45 loc) · 2.16 KB
/
container.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="https://pingendo.com/assets/bootstrap/bootstrap-4.0.0-beta.1.css" type="text/css"> </head>
<body>
<div class="py-5">
<div class="container">
<div class="row">
<div class="col-md-6 py-5" style="">
<img class="img-fluid d-block" id="uploadedImage" src="https://pingendo.com/assets/photos/wireframe/photo-1.jpg">
<a class="btn btn-primary btn-block" onclick="update_image()" href="javascript:;">Upload</a>
</div>
<div class="col-md-6">
<h1 class="">JSON Response</h1>
<textarea id="output" rows="20" cols="50" style="visibility:hidden">
{
'faceAnnotations': [
{
'Forehead': 'success in early life'
'eye': 'cautious and conservative',
'eye brow': 'lonely',
'nose width': 'fair',
'nose height': 'passive'
'upper lip': 'turbulent career',
'lower lip': 'rich geek',
'lip width': 'honest'
'chin': 'peaceful late life',
'ear': 'suspicious and sensitive',
}
]'
}
</textArea>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
<script src="js/refreshPage.js"></script>
</body>
</html>