forked from vankyver/vulners-browser-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
45 lines (40 loc) · 1.35 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
<!doctype html>
<html>
<head>
<title>Vulners web scanner</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link rel="stylesheet" href="css/main.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body id="body" >
<div id="header">
<nav>
<div class="nav-wrapper grey darken-3">
<ul class="left stat">
<li><div> vulnerable <span id="stat-vulnerable"> </span> </div></li>
<li><div> scanned <span id="stat-scanned"> </span> </div></li>
</ul>
<ul class="right ">
<li><div>Show all domains</div></li>
<li>
<div class="switch">
<label>
<input id="show_all_content" type="checkbox">
<span class="lever"></span>
</label>
</div>
</li>
<li><i class="material-icons delete">delete</i></li>
</ul>
</div>
</nav>
</div>
<div id="content">
<div class="gap-patch">
<div class="circle"></div>
</div>
</div>
<script src="popup.js" type="text/javascript"></script>
</body>
</html>