-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·23 lines (20 loc) · 922 Bytes
/
index.php
File metadata and controls
executable file
·23 lines (20 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
session_start();
if (isset($_SESSION['user']) && isset($_SESSION['pass'])) {
?>
<title>JIBAS - AKADEMIK</title>
<link href="images/jibas.ico" rel="shortcut icon" />
<frameset border="0" frameborder="0" framespacing="0" rows="87,*,41">
<frame name="frametop" src="frametop.php" scrolling="no" noresize="noresize" />
<frameset border="0" frameborder="0" framespacing="0" cols="20,*,27">
<frame name="frameleft" src="frameleft.php" scrolling="no" noresize="noresize" />
<frame name="content" src="modul/referensi.php"/>
<frame name="frameright" src="frameright.php" scrolling="no" noresize="noresize" />
</frameset>
<frame name="framebottom" src="framebottom.php" scrolling="no" noresize="noresize" />
</frameset><noframes></noframes>
<?php
} else {
header('location:login.php?c=login');
}
?>