-
Notifications
You must be signed in to change notification settings - Fork 3
/
options.html
64 lines (51 loc) · 1.76 KB
/
options.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
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<title>Input API KEY</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="./js/semantic/jquery-3.1.1.min.js"></script>
<script src="./js/semantic/semantic.min.js"></script>
<script src="/js/options.js"></script>
<link rel="stylesheet" type="text/css" href="./css/shodan.css">
<link rel="stylesheet" type="text/css" href="./css/popup.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css">
</head>
<style>
body {
border: 10px solid transparent;
padding: 20px;
flex-direction: column;
}
</style>
<body>
<div class="text-center">
<h1>Set API Key</h1>
</div>
<div class="ui two column very relaxed grid" style="margin: 20px;">
<div class="column">
<h4 class="ui header">Shodan API Key</h4>
<div class="ui input fluid">
<input type="text" id="shodan_key">
</div>
<h4 class="ui header">VirusTotal API Key</h4>
<div class="ui input fluid">
<input type="text" id="vt_key">
</div>
</div>
<div class="column">
<h4 class="ui header">Censys API ID</h4>
<div class="ui input fluid">
<input type="text" id="censys_key">
</div>
<h4 class="ui header">Censys Secret</h4>
<div class="ui input fluid">
<input type="text" id="censys_secret">
</div>
</div>
</div>
<div class="ui divider"></div>
<button class="ui right floated button positive" id="option_save">Save</button>
</body>
</html>