-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwelcome_admin.php
62 lines (52 loc) · 1.82 KB
/
welcome_admin.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
<?php
require_once 'db_con.php';
require_once 'header.php';
require_once 'admin_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 Area</h2>
<div class="panel panel-primary">
<a href = "admin_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">
<a href="make_admin.php" class="btn btn-info btn-lg" style="width:200px;">
Make new admin
</a>
<a href="student.php" class="btn btn-info btn-lg" style="width:200px;">
Student
</a>
<a href="teacher_insert.php" class="btn btn-info btn-lg" style="width:200px;">
Teacher
</a>
<a href="routine_insert.php" class="btn btn-info btn-lg" style="width:200px;">
Routine
</a>
<a href="insert_result.php" class="btn btn-info btn-lg" style="width:200px;">
Result
</a>
</div>
<div class="col-md-6">
<a href="course_insert.php" class="btn btn-info btn-lg" style="width:200px;">
Syllebus
</a>
<a href="room_insert.php" class="btn btn-info btn-lg" style="width:200px;">
Room
</a>
<a href="admin_log.php" class="btn btn-info btn-lg" style="width:200px;">
User Accounts
</a>
<a href="hall_insert.php" class="btn btn-info btn-lg" style="width:200px;">
Hall Information
</a>
</div>
</div>
</div>
</div>
</div>
</div>