-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadheader.php
50 lines (47 loc) · 1.87 KB
/
adheader.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
<?php
$_SESSION['lastaddress']= $_SERVER['PHP_SELF'];
if(isset($_SESSION['file_state'])){
$state = $_SESSION['file_state'];
}else{
$state="Login";
}
if(isset($_POST['Logout'])){
$log = new login;
$log->logout();
}
if(isset($_POST['Login'])){
$log = new login;
$log->tologin();
}
?>
<?php include_once('controller/fetch_category_control.php'); ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Lawfirm Filing System.</title>
<!--For sweet alert-->
<script src="asset/css/sweetalert/dist/sweetalert.min.js"></script>
<link rel="stylesheet" type="text/css" href="asset/css/sweetalert/dist/sweetalert.css">
<!-- Stylesheets -->
<link href="asset/css/bootstrap.css" rel="stylesheet">
<link href="asset/css/revolution-slider.css" rel="stylesheet">
<link href="asset/css/style.css" rel="stylesheet">
<link rel="shortcut icon" href="asset/images/logo.png" type="image/x-icon">
<link rel="icon" href="asset/images/logo.png" type="image/x-icon">
<link href="asset/css/hover.css" rel="stylesheet" type="text/css"/>
<link href="asset/css/w3.css" rel="stylesheet">
<link href="asset/css/admin.css" rel="stylesheet" type="text/css"/>
<link href="asset/css/responsive.css" rel="stylesheet">
<!-- Responsive -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script><![endif]-->
<!--[if lt IE 9]><script src="js/respond.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>