-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.html
42 lines (33 loc) · 969 Bytes
/
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
<!DOCTYPE html>
<html>
<head><title>MISPnomer settings</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="header">
<img src = "logos/icon64.png" alt = "MISPnomer Logo" />
<h2>MISPifier</h2>
</div>
<p>
<label>MISP URL
<input type="text" id="mispURL" size="50">
</label>
<div class="note" id="mispURLnote"></div>
</p>
<div class="orgDiv">
Choose the default org that your new events should be added to.<br>
<input id="defaultOrg" type="number" value="1" min="1" max="100">
</div>
<!--
<p>Options:<br>
<input type="checkbox" name="opt[]" value="ids_flag">Toggle ids_flag on all attributes<br>
<input type="checkbox" name="opt[]" value="url_comment">Add tab URL as comment of attribute<br>
</p>
-->
<div id="savearea">
<button class="round" id="save">Save</button>
<div id="status"></div>
</div>
<script src="options.js"></script>
</body>
</html>