-
Notifications
You must be signed in to change notification settings - Fork 0
/
teachers.php
executable file
·133 lines (62 loc) · 2.23 KB
/
teachers.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php session_start(); #if session exist then session error variable will be set to null
if(!isset($_SESSION["username"]))
header('Location: index.php');
$_SESSION["error"] = "";
?>
<script>
$('#myModal').on('shown.bs.modal', function () {
$('#myInput').focus()
})
</script>
<style>
h3{color: #042c4f}
</style>
<head><title>Teachers panel</title></head>
<?php include("header.php"); ?>
<body>
<!--
<img src="iet.jpg" style="width: 100%;"/>
-->
<br>
<center>
<div class="row">
<div class="col-sm-12 col-md-12">
<div class="card card-inverse card-info mb-3" style="margin-bottom:70px; margin-top:90px;">
<div class="card-block">
<h3 class="card-title"><h3 class="text-primary"><?php echo "Welcome ".$_SESSION['username']; /*display username welcome message*/ ?></h3></h3>
<div class="icon">
<div class="row">
<div class="col-1">
</div>
<div class="col-md-2 col-xs-12 col-sm-12">
<a class="icon-wrapper" href="attendance.php"><i class="fa fa-calendar-check-o fa-4x custom-icon"><span class="fix-editor"> </span></i></a>
<a href="attendance.php"><h3>Attendance</h3></a>
</div>
<div class="col-md-2 col-xs-12 col-sm-12">
<a class="icon-wrapper" href="#"><i class="fa fa-calendar fa-4x custom-icon"><span class="fix-editor"> </span></i></a><br>
<a href="#"><h3>Schedule</h3></a>
</div>
<div class="col-md-2 col-xs-12 col-sm-12">
<a class="icon-wrapper" href="#"><i class="fa fa-comments-o fa-4x custom-icon"><span class="fix-editor"> </span></i></a>
<a href="#"><h3>Feedback</h3></a>
</div>
<div class="col-md-2 col-xs-12 col-sm-12">
<a class="icon-wrapper" href="#"><i class="fa fa-pencil-square-o fa-4x custom-icon"><span class="fix-editor"> </span></i></a><br>
<a href="#"><h3>Notes</h3></a>
</div>
<div class="col-md-2 col-xs-12 col-sm-12">
<a class="icon-wrapper" href="#"><i class="fa fa-users fa-4x custom-icon"><span class="fix-editor"> </span></i></a>
<a href="#"><h3>Marks</h3></a>
</div>
<div class="col-1">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</center>
<?php include("footer.php"); ?>
</body>
</html>