-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.php
executable file
·67 lines (59 loc) · 3.5 KB
/
index.php
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
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>Network Miner</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="bower_components/bootstrap-select/dist/css/bootstrap-select.min.css" type="text/css">
<link rel="stylesheet" href="css/custom.css" type="text/css">
<link rel="icon" href="img/favicon.ico">
</head>
<body>
<div class="container-fluid">
<header>
<div class="page-header">
<h2>Network Miner</h2>
</div>
</header>
<section>
<div class="row-fluid">
<div class="well">
<fieldset>
<form class="form-inline">
<button type="button" id="discover_btn" class="btn btn-primary pull-left" data-loading-text="Discover in progress...">
<span class="glyphicon glyphicon-eye-open"></span> Discover
</button>
<select id="select_proto" class="selectpicker show-tick col-lg-1">
<option>Auto</option>
<option>LLDP</option>
<option>CDP</option>
<option>EDP</option>
</select>
<input type="text" class="form-control" id="ip_input" placeholder="First IP/hostname..." data-placement="top" data-toggle="popover" data-content="Please enter an IP or hostname">
<input type="text" class="form-control" id="community_input" placeholder="Community..." data-placement="top" data-toggle="popover" data-trigger="hover" data-content="Default: public">
<input type="text" class="form-control" id="dig_level_input" placeholder="Dig level..." data-placement="top" data-toggle="popover" data-trigger="hover" data-content="Default: 1">
<div class="input-group pull-right">
<div class="scrollable-dropdown-menu">
<input type="text" class="form-control" id="search_input" autocomplete="off" placeholder="Device search...">
</div>
<span class="input-group-btn">
<button class="btn btn-default" type="button" id="search_btn">Go!</button>
</span>
</div>
</form>
</fieldset>
</div>
</div>
<div class="row-fluid" id="notif"></div>
</section>
</div>
<script type="text/javascript" src="bower_components/d3/d3.min.js"></script>
<script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="bower_components/jqueryui/jquery-ui.min.js"></script>
<script type="text/javascript" src="bower_components/jqueryui/themes/smoothness/jquery-ui.min.css"></script>
<script type="text/javascript" src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src="bower_components/bootstrap-select/dist/js/bootstrap-select.min.js"></script>
<script type="text/javascript" src="bower_components/typeahead.js/dist/typeahead.bundle.min.js"></script>
<script type="text/javascript" src="functions.js"></script>
</body>
</html>