-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·72 lines (68 loc) · 1.93 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
72
<?php
session_start();
?>
<script type="text/javascript">
function preventBack(){
window.history.forward();
setTimeout("preventBack()",0);
window.onunload=function(){null};
}
</script>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Bootstrap core CSS -->
<link href="../../dist/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<style type="text/css">
.login{
margin-top: 20px;
}
.student{
margin-left: 200px;
}
.home-page{
margin: 30px 0px 0px 0px;
}
.dgp-image{
width: 400px;
height: 300px;
}
</style>
</head>
<body>
<ul class="nav nav-tabs" id="header">
<li class="active"><a href="index.php">Home</a></li>
<li><a href="admin.php">Admin Login</a></li>
<li><a href="student.php">Student Login</a></li>
<li><a href="registration.php">Registration</a></li>
<li><a href="about_us.php">About Us</a></li>
</ul>
<div class="container jumbotron">
<div class="row">
<div class="col-lg-2">
<img src="images (1).jpg" alt="" class="img-thumbnail">
</div>
<div class="col-lg-10">
<h1>
National Institute of Technology, Durgapur
</h1>
</div>
</div>
<div class="row">
<div class="col-lg-6 home-page">
<img src="images.jpg" alt="" class="img-thumbnail">
</div>
<div class="col-lg-6">
<img src="images (4).jpg" alt="" class="img-thumbnail">
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- // <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script> -->
<script src="../../dist/js/bootstrap.min.js"></script>
<script src="jquery-1.11.0.js"></script>
</body>
</html>