-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
77 lines (66 loc) · 2.16 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
66
67
68
69
70
71
72
73
74
75
76
77
<?php
session_start();
include 'config/koneksi.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sistem Informasi Posyandu</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="js/datatables.min.css">
<link href="css/style.css" rel="stylesheet">
<link href="js/jquery-ui.min.css">
<script type="text/javascript">
var elm=document.getElementsByTagName("html")[0];
elm.style.display="none";
document.addEventListener("DOMContentLoaded",function(event) { elm.style.display="block"; });
</script>
</head>
<body>
<div class="container" style="margin-top: 20px;">
<div class="row">
<div class="col-md-12">
<header>
<img width='100%' src="image/header.jpg">
<nav id="willFixed" class="navbar navbar-default navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="navbar" class="navbar-collapse collapse navbar-scrollers">
<ul class="nav navbar-nav">
<?php if(empty($_SESSION["nama_admin"])) :
include 'listHeaderNotLogin.php';
?>
<?php else :
include 'list_header.php';
endif ?>
</ul>
</div>
</nav>
</header>
</div>
</div> <!-- end of row index.php -->
<?php include 'content.php';?>
<div class="row" >
<div class="col-md-12">
<footer class="well">
<p style="color: #8BC34A;">Sistem Informasi Posyandu Desa Mangunjaya</p>
</footer>
</div>
</div> <!-- end of row -->
</div> <!-- end of container -->
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/datatables.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/sweetalert.js"></script>
<script src="js/custom.js"></script>
</body>
</html>