-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
103 lines (88 loc) · 2.94 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php session_start();
//Aktifkan session
require 'config/koneksi.php'; ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SI BUKU TAMU</title>
<link href="Assets/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="Assets/css/dataTables.bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="Assets/font-awesome-4.5.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
<style type="text/css">
body {
margin-top:70px;
}
.modalDialog {
position: fixed;
font-family: Arial, Helvetica, sans-serif;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0,0,0,0.8);
z-index: 99999;
opacity:0;
transition: opacity 200ms ease-in;
pointer-events: none;
}
.modalDialog:target {opacity:1; pointer-events: auto;}
.modalDialog > div {
width: 400px;
position: relative;
margin: 10% auto;
padding: 5px 20px 13px 20px;
border-radius: 10px;
background: #fff;
background: linear-gradient(#fff, #aaa);
}
.close:hover { background:#00d9ff; }
.close {
background: #606061;
color: #FFFFFF;
line-height: 25px;
position: absolute;
text-align: center;
top: -10px;
right: -12px;
width: 24px;
text-decoration: none;
font-weight: bold;
border-radius: 12px;
box-shadow: 1px 1px 3px #000;
}
button {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
}
</style>
</head>
<body>
<?php //mengambil file menu.php
require 'akun.php';
?>
<?php //mengambil file menu.php
require 'menu.php';
?>
<?php //mengambil file menu.php
require 'content.php';
?>
<?php //mengambil file menu.php
require 'footer.php';
?>
<script src="Assets/js/jquery.js" type="text/javascript"></script>
<script src="Assets/js/bootstrap.min.js" type="text/javascript"></script>
<script src="Assets/js/jquery.dataTables.min.js" type="text/javascript"></script>
<script src="Assets/js/dataTables.bootstrap.min.js" type="text/javascript"></script>
<script type="text/javascript" >
$(function () {
$('#dtskripsi').dataTable();
});
</script>
</body>
</html>