-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
71 lines (61 loc) · 2.25 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
68
69
70
71
<?php include("./src/functions.php"); ?>
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>hsm</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="./css/hsm.css">
<!--<link rel="stylesheet" href="./bootstrap.min.css">-->
<!-- jQuery library -->
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>-->
<script src="./src/js/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<!--<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>-->
<script src="./src/js/bootstrap.min.js"></script>
<!--<script src="http://twitter.github.io/typeahead.js/releases/latest/typeahead.bundle.min.js"></script>-->
<script src="./src/js/typeahead.bundle.min.js"></script>
<!--<script src="./js/typeahead.js"></script>-->
<script src="./src/js/search.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="./index.php">Bell Group</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false" href="#">Projects
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="./hsm/hsm.php">hsm</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</div>
</div>
<div class="container-fluid" style="margin-top: 7em">
<div class="row-fluid">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" style="text-align: center;">
<p></p>
</div>
</div>
</div>
</body>
</html>