-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdashboard.php
More file actions
31 lines (26 loc) · 802 Bytes
/
dashboard.php
File metadata and controls
31 lines (26 loc) · 802 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
<?php
session_start();
if($_SESSION['is_login'] !== true){
$_SESSION['error101'] = 'Gak usah macam macam kau';
header("Location: login.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="assets/navbar.css">
</head>
<body>
<div class="topnav"> <!--navbar kita ini-->
<a class="active" href="home.php">SignOut</a>
<a href="bodyparts.php">BodyParts</a>
<a href="offer.php">Auction Register</a>
<a href="offerAudit.php">Auction Audit</a>
</div>
<h1 text-align:center> Welcome to TokoBodyParts </h1>
</body>
</html>