-
Notifications
You must be signed in to change notification settings - Fork 0
/
kos-mahasiswa.php
49 lines (42 loc) · 978 Bytes
/
kos-mahasiswa.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
<?php
session_start();
if(!isset($_SESSION["login"])){
header("Location: login.php");
exit;
}
require 'functions.php';
$kosdata = query("SELECT * FROM kos_mahasiswa");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include("header.php");
?>
</head>
<body>
<!-- Navigation -->
<?php
include("template/navbar.php");
?>
<!-- Page Content -->
<div class="page-content page-home">
<?php
include("template/_kos-newlist.php");
?>
</div>
<footer>
<?php
include("footer.php")
?>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.slim.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="script/navbar-scroll.js"></script>
</body>
</html>