-
Notifications
You must be signed in to change notification settings - Fork 1
/
welcome_teacher.php
40 lines (29 loc) · 1020 Bytes
/
welcome_teacher.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
<?php
require_once 'db_con.php';
require_once 'header.php';
require_once 'teacher_session.php';
?>
<div class="container-fluid">
<div class="row" id="wrapper">
<?php require_once'menubar.php';?>
<div class="col-md-10 col-md-offset-1">
<br><br>
<h2 style="font-family:Bernard MT Condensed; color:#06857C;">Admin Teacher</h2>
<div class="panel panel-primary">
<a href = "teacher_logout.php" class="btn btn-warning" style="float:right;">Sign Out</a>
<div class="panel-body">
<center><p>Welcome - <?php echo "<b style='font-family:Bodoni MT Condensed;color:#053BC2; font-size:30px;'>".$login_session."</b>"; ?></p></center><br><br>
<div class="col-lg-12">
<div class="col-md-6 col-md-offset-4">
<a href="admin_notice.php" class="btn btn-info btn-lg" style="width:200px;">
Notice
</a>
<br>
<br>
<br>
</div>
</div>
</div>
</div>
</div>
</div>