-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathcek.php
30 lines (28 loc) · 872 Bytes
/
cek.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
<!DOCTYPE html>
<html>
<head>
<title>Aplikasi Pengaduan Masyarakat</title>
<link rel="shortcut icon" href="https://cepatpilih.com/image/logo.png">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- ICONS -->
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/apple-icon.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/img/favicon.png">
</head>
<body>
<?php
include 'conn/koneksi.php';
if(@$_GET['p']==""){
include_once 'masuk.php';
}
elseif(@$_GET['p']=="login"){
include_once 'masuk.php';
}
elseif(@$_GET['p']=="logout"){
include_once 'logout.php';
}
?>
</body>
</html>