-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
49 lines (49 loc) · 2.08 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
<!DOCTYPE html>
<html class='no-js' lang='en'>
<head>
<meta charset='utf-8'>
<meta content='width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0' name='viewport'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SES</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='/images/icon_128.png' rel='shortcut icon'>
<link href='/style.css' rel='stylesheet' type='text/css' />
</head>
<body id='popup'>
<p id='status' data-resource='popupLoading'>Loading...</p>
<div id='notConfigured'>
<button class='openSettings' data-resource='popupSettings'>Settings</button>
</div>
<form id="form">
<h1 data-resource='popupHeader'>Does this email seem suspicious?</h1>
<pre id='data' class='data'></pre>
<div>
<input type='checkbox' id='followupEnable' name='followupEnable'/>
<label for='followupEnable' data-resource='followupOption'>
Please followup with me by email:
</label>
<input id='followupEmail' type='email' />
</div>
<div id='destination'>
<p data-resource='popupCurrent'>SES is currently configured to send emails to:</p>
<p class='clearfix'>
<img class='logo'></img><span class='name'></span>
</div>
</div>
<button id='settings' class='openSettings' data-resource='popupSettings'>Settings</button>
<input id='submit' type='submit' value='Send' data-resource='popupSend'>
<div id='thanks'>
<span data-resource='popupSent'>Sent, thanks!</span>
</div>
<div id='error'>
<span data-resource='popupMispServerError'>MISP server error!</span>
</div>
</form>
<script type="text/javascript" src="jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="i18n.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript" src="misp.js"></script>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>