-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
74 lines (71 loc) · 2.53 KB
/
index.php
File metadata and controls
74 lines (71 loc) · 2.53 KB
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
72
73
74
<!DOCTYPE html>
<head>
<title>Library Management Syatem</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/navbar.css">
<script src="js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" href="css/dataTables.bootstrap.min.css">
<script src="js/dataTables.bootstrap.min.js"></script>
<link rel="stylesheet" href="css/dataTables.responsive.css">
<script src="js/dataTables.responsive.min.js"></script>
</head>
<body>
<div>
<img src="images/Banner_Library.jpg" alt="" style="width: 100%;" height="170">
</div>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.php"> <span class="glyphicon glyphicon-home"></span> Home</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="UserRegPG.php"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>
<li><a href="UserLoginPG.php"><span class="glyphicon glyphicon-log-in"></span>Login</a></li>
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="images/a1.png" alt="" style="width: 100%;">
</div>
<div class="item">
<img src="images/a2.jpg" alt="" style="width: 100%;">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!--<footer class="footer">
<div class="container">
<span class="text-muted">Place sticky footer content here.</span>
</div>
</footer>-->
</div>
<div class="row">
<?php
require("Footer.php");
?>
</div>
</body>
</html>