-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
53 lines (52 loc) · 2.49 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
<?php $active_page="home"; ?>
<!DOCTYPE html>
<html>
<head>
<title>Welcome to NITG Library</title>
<link rel="shortcut icon" href="img/NIT_Goa_Logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="bootstrap/css/bootflat.css" rel="stylesheet" media="screen">
<link href="bootstrap/css/bootflat-square.css" rel="stylesheet" media="screen">
<link rel="stylesheet" href="css/mystyle.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body class="main_container">
<?php include_once "page_components/header.php"; ?>
<div class="container">
<?php include_once "page_components/login_modal.php"; ?>
<?php include_once "page_components/register_modal.php"; ?>
<img class="home_logo" src="img/NIT_Goa_Logo.png" alt="NITG Logo">
<h1 class="home_header">Welcome to NIT Goa Library</h1>
<h3 class="home_intro">
This is the National Institute of Technology Goa online library portal. Here you can easily search and issue books. There are many more features available.
</h3>
<div id="hidden" class="container hide">
<p class="text-center">You are being redirected to home page...</p>
</div>
</div>
<script src="js/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="bootstrap/js/html5shiv.js"></script>
<script src="bootstrap/js/jquery-1.10.1.min.js"></script>
<script src="bootstrap/js/jquery.icheck.js"></script>
<script src="bootstrap/js/respond.min.js"></script>
<script>
$(function(){
document.getElementById("hidden").className = document.getElementById("hidden").className.replace
( /(?:^|\s)hide(?!\S)/g , '' );
document.getElementById("hide_nav").className = "hide";
document.getElementById("hide_nav1").className = "hide";
setTimeout(function(){
window.location.href="pages/lib_catalog.php";
},5000);
});
</script>
</body>
</html>