-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
41 lines (37 loc) · 1.18 KB
/
Copy pathadmin.php
File metadata and controls
41 lines (37 loc) · 1.18 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link href="laibery/bootstrap.min.css" rel="stylesheet">
<?php
include_once 'laibery/auth.php';
include_once 'laibery/session_start.php';
if(!islogged() && $_SESSION['log_users']!='admin')
{
header('location:admin_login.php');
}
?>
</head>
<body style="background-color: rgba(230,255,239,0.82)">
<div class="nav" style="width: 100%;height: 60px">
<?php
include_once 'admin_nav.php';
?>
</div>
<div class="container">
<div class="blank" style="height: 70px;width: 100%"></div>
<div class="row">
<div class="col-md-2">
</div>
<div class="col-md-8">
<h1>Welcome <?= $_SESSION['user_info']['name']?></h1>
<p>This is a Admin user interface to monitor students and teachers information and approve teachers accounts
and control subject list , subject codes etc.</p>
</div>
</div>
</div>
</body>
</html>