-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpanelbiku.php
62 lines (61 loc) · 1.68 KB
/
panelbiku.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
session_start();
if(!isset($_SESSION['user'])) {
header('location:loginbiku.html');
}
?>
<html>
<head>
<title>Home | BIKU</title>
<link rel="stylesheet" type="text/css" href="CSS/layout.css"/>
<link rel="stylesheet" type="text/css" href="CSS/font.css"/>
<link rel="stylesheet" type="text/css" href="CSS/element.css"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn-slide").click(function(){
$("#cpanel").slideToggle("slow");
$(this).toggleClass("active");
return false;
});
});
</script>
</head>
<body>
<div id="container">
<div id="header">
<table border="0" cellspacing="10">
<tr>
<td><img src="Images/biku.png" width="150" height="150" /></td>
<td><h1>BIKU Page</h1></td>
</tr>
</table>
</div>
<div class="slide" style="background: lime;"><a href="#" class="btn-slide">Show/Hide Menu Utama</a></div>
<div id="cpanel">
<table border="0" cellspacing="30">
<tr>
<td colspan="4"><h1>Menu Utama</h1></td>
</tr>
<tr>
<td><a href="datakeuangan.html" title="Data Keuangan Mahasiswa"><img src="Images/keuangan.png" /></a></td>
</tr>
<tr>
<td><a href="datakeuangan.html" title="Data Keuangan Mahasiswa">Data Keuangan Mahasiswa</a></td>
</tr>
</table>
</div>
<div id="cpanel2">
<table border="0" cellspacing="30">
<tr>
<td><a href="logoutbiku.php" title="Log Out" ><img src="Images/logout.png" /></a></td>
</tr>
<tr>
<td><a href="logoutbiku.php" title="Log Out" >Log Out</a></td>
</tr>
</table>
</div>
</div>
<div id="footer">Copyright © 2013 ERA</div>
</body>
</html>