-
Notifications
You must be signed in to change notification settings - Fork 94
/
index.php
executable file
·65 lines (63 loc) · 2.73 KB
/
index.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
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>Admin</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<link href="css/admin.css" rel="stylesheet" type="text/css" />
<link href="css/form.css" rel="stylesheet" type="text/css" />
<link href="css/surat.css" rel="stylesheet" type="text/css" media="screen"/>
<link href="css/surat_cetak.css" rel="stylesheet" type="text/css" media="print"/>
<link href="css/jquery-ui-1.8.19.custom.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.19.custom.min.js"></script>
<script type="text/javascript" src="js/buatan_sendiri.js"></script>
</head>
<script type="text/javascript">
$(function(){
$("#left-column ul.nav a").click(function(){
var url = $(this).attr("href");
// load div center-column dengan url dari anchor tsb
$("#center-column").html("<div class='loading'>Mohon ditunggu .........</div>")
.load(url);
return false;
})
})
</script>
<body>
<div id="main">
<div id="header">
<a href="#" class="logo"><img src="img/logo.gif" width="101" height="29" alt="" /></a>
</div>
<div id="middle">
<div id="left-column">
<h3>Data Master</h3>
<ul class="nav">
<li><a href="daftar_penduduk2.php">Daftar Penduduk</a></li>
<li><a href="tambah_penduduk.php">Tambah Penduduk</a></li>
<li><a href="daftar_keluarga.php">Daftar Keluarga</a></li>
<li><a href="tambah_keluarga.php">Tambah Keluarga</a></li>
</ul>
<h3>Surat</h3>
<ul class="nav">
<li><a href="#">Daftar Surat</a></li>
<li><a href="tambah_surat_link.php">Buat Surat</a></li>
</ul>
<h3>User</h3>
<ul class="nav">
<li><a href="#">Ganti Password</a></li>
<li><a href="#">Keluar</a></li>
</ul>
</div>
<div id="center-column">
</div>
<!---
<div id="right-column">
<strong class="h">Quick Info</strong>
<div class="box">This is your admin home page. It will give you access to all things within the back end system that you will need to facilitate a smooth operation.</div>
</div>
--->
</div>
<div id="footer"><p>Developed by <a href="http://twitter.com/umutm">Umut Muhaddisoglu</a> 2008. Updated for HTML5/CSS3 by <a href="http://mediagearhead.com">Giles Wells</a> 2010.</p></div>
</div>
</body>
</html>