-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdash.php
More file actions
26 lines (26 loc) · 768 Bytes
/
Copy pathdash.php
File metadata and controls
26 lines (26 loc) · 768 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
<?php
session_start();
if (empty($_SESSION['username']) && empty($_SESSION['password'])) {
if (!function_exists('http_response_code')) {
header($_SERVER["SERVER_PROTOCOL"]." 403 Forbidden");
} else {
http_response_code(403);
}
header("Location: ./");
} else {
?>
<!DOCTYPE html>
<html lang="id" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dasbor Web</title>
</head>
<body>
<h1 style="text-align: center;">Selamat datang di Dasbor Web, <?php echo $_SESSION['nm_pengguna']; ?></h1>
<p style="text-align: center;"><a href="logout.php">Keluar</a></p>
</body>
</html>
<?php
}
?>