-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.php
More file actions
37 lines (33 loc) · 969 Bytes
/
Copy pathdashboard.php
File metadata and controls
37 lines (33 loc) · 969 Bytes
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
<?php
require 'koneksi.php';
if($_SESSION['nik'] == ""){
header('location: login.php');
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="CSS/style.css">
<title>DASHBOARD PENGADUAN MASYARAKAT</title>
</head>
<body>
<div class="sidebar">
<a class="active" href="dashboard.php">DASHBOARD</a>
<a href="formPengaduan.php">FORM PENGADUAN</a>
<a href="riwayatPengaduan.php">RIWAYAT PENGADUAN</a>
<a href="logout.php">LOGOUT</a>
</div>
<div class="content">
<div id=rela>
<h2>SELAMAT DATANG <?php echo $_SESSION['nama'];?>
</h2>
</div>
<div id="relative"> <h4><p>website ini adalah sebuah platform </p>
<p>untuk masyarakat memberikan keluhan dan pengaduan</p>
<P>agar dapat segera ditanggapi</P></h4>
</div>
</div>
</body>
</html>