-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.php
62 lines (48 loc) · 1.39 KB
/
main.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
error_reporting(0);
session_start();
if (empty($_SESSION['username']) and empty($_SESSION['passuser'])) {
echo "<link href='pengaturan/style.css' rel='stylesheet' type='text/css'>
<center>Untuk mengakses halaman Administrator, Anda harus login <br>";
echo "<a href=index.php><b>LOGIN</b></a></center>";
}
else {
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript" src="pengaturan/validasi.js"></script>
<title>Aplikasi Bimbingan & Konseling SMA Negeri 1 Manonjaya</title>
<link rel="shortcut icon" href="images/icon.ico" type="image/x-icon" />
<link rel="stylesheet" href="pengaturan/stylemain.css" type="text/css" media="screen" />
<link rel="stylesheet" href="pengaturan/paging.css" type="text/css" />
</head>
<BODY>
<div id="wrapper">
<div id="header">
</div>
<div id="sidebar">
<ul>
<?php include "menu.php"; ?>
</ul>
<p> </p>
<div id="sidebar-bottom">
<br><br>
</div>
</div>
<div id="content">
<?php include "content.php"; ?>
</div>
<div id="footer">
<div id="footer-valid">
Copyright 2013 @ Bimbingan & Konseling SMA Negeri 1 Manonjaya</a>
</div>
</div>
</div>
</body>
</html>
<?php
}
?>