-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
executable file
·59 lines (58 loc) · 1.64 KB
/
popup.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
49
50
51
52
53
54
55
56
57
58
59
<!doctype html>
<!--This is a test comment-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<html>
<head>
<title>Results</title>
<link href="css/style.css" rel="stylesheet" type="text/css" media="screen" />
<style>
.container {
/* avoid an excessively wide status text */
text-overflow: ellipsis;
overflow: hidden;
max-width: 500px;
width: 400px;
height: 100%;
}
#status {
padding: 10px;
}
</style>
<script src="bundle.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-3">
<h3 class="text-center"><img src="images/RosetteAPI-Icon.png" width="36px" height="36px"></img> Rosette Entity Extraction</h3>
<hr/>
<div id="stash" hidden></div>
<p class="bg-info" id="status"></p>
<hr/>
<div id="catStatus"></div>
<p id="catResult"></p>
<hr/>
<div id="entityStatus"></div>
<div>
<h4 class="text-danger">People</h4>
<ul id="pers"/>
</div>
<div>
<h4 class="text-info">Locations</h4>
<ul id="locs"/>
</div>
<div>
<h4 class="text-success">Organizations</h4>
<ul id="orgs"/>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-3 text-right">
<a href="options.html"><button type="button" class="btn btn-primary btn-xs">Enter API Key</button></a>
</div>
</div>
</div>
</body>
</html>