-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudentmainpage.php
More file actions
90 lines (78 loc) · 3.62 KB
/
studentmainpage.php
File metadata and controls
90 lines (78 loc) · 3.62 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<script>
@import "node_modules/bootstrap/scss/bootstrap";</script>
<link rel="stylesheet" type="text/css" href="CSS/student.css">
</head>
<body style=" background-image: url(images/bgadminmain1.jpg); background-repeat:no-repeat; background-size:cover;">
<?php
session_start();
if(isset($_SESSION['usn'])){
}
else{
header("location: studentlogin.php");
}
?>
<nav class="navbar navbar-expand-lg navbar-light bg-danger">
<a class="navbar-brand" href="#">CSIS</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
More
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="logout.php">Log Out</a>
</div>
</li>
</ul>
</div>
</nav>
<?php
$conn=mysqli_connect("localhost","root","","project1");
?>
<center>
<h4 class="my-2" align="center"style=" font-family:Arial ;width:400px;box-shadow: 3px 2px 3px 2px black;color :white;background-color:rgb(196, 25, 25 ,0.7) ;border-radius: 15px;"><b style="text-shadow: 3px 2px black;">Student Dashboard<b></h4>
</center>
<div class="col-md-10">
<div class="divt" style="height:130px;margin-left:250px;">
<div class="col-md-12">
<div class="row">
<div class="col-md-8">
<h5 class="text-white " style="margin-top:10px;font-size:30px;">Internal</h5>
<h5 class="text-white "style="font-size:30px;">Assessment</h5>
</div>
<div class="col-md-4">
<a href="iadisplay.php" ><img src="images/iaicon.png" style="border-color: rgb(224, 37, 54 ,0.0);margin-top:-20px;width:100px;opacity: 0.95;height:100px;box-shadow: -2px 2px 2px -2px black;border-radius:55px 55px;" alt="Click here"> </a>
</div>
</div>
</div>
</div>
<div class="divt" style="height:130px;margin-top:-130px;margin-left:800px;">
<div class="col-md-12">
<div class="row">
<div class="col-md-8">
<h5 class="my-2 text-white " style="font-size: 30px;">Student</h5>
<h5 class="my-2 text-white " style="font-size: 30px;">Attendance</h5>
</div>
<div class="col-md-4">
<a href="attdisplay.php" ><img src="images/atticon.png" style="border-color: rgb(224, 37, 54 ,0.0);margin-top:-20px;width:100px;opacity: 0.9;height:100px;box-shadow: -2px 2px 2px -2px black;border-radius:55px 55px;" alt="Click here"> </a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
mysqli_close($conn);
?>
</body>
</html>