-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.php
More file actions
58 lines (53 loc) · 1.85 KB
/
dashboard.php
File metadata and controls
58 lines (53 loc) · 1.85 KB
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
50
51
52
53
54
55
56
57
58
<?php
include 'db.php';
session_start();
if($_SESSION['status_login'] != true){
echo '<script>window.location="login.php"</script>';
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
</head>
<body>
<!--===== HEADER =====-->
<header>
<div class="container">
<h1><a href="dashboard.php">Himang</a></h1>
<ul>
<li><a href="dashboard.php">Dashboard</a></li>
<li><a href="profil.php">Profil</a></li>
<li><a href="data-kategori.php">Data Kategori</a></li>
<li><a href="data-produk.php">Data Produk</a></li>
<li><a href="keluar.php">Keluar</a></li>
</ul>
</div>
</header>
<!--===== KONTEN =====-->
<div class="section">
<div class="container">
<h3>Dashboard</h3>
<div class="box" align="center">
<P>Selamat Datang <?php echo $_SESSION['a_global']->nama_admin ?> di Toko Online</P>
<img src="gbr/admin.jpg" alt="admin"
width="20%" alt="admin" >
<P align="center">Benidiktus Himang</P>
<P align="center">(221019900013)</P>
<P align="center">Pertukaran Mahasiswa merdeka 2 Inbound Universitas Pamulang</P>
</div>
</div>
</div>
<!--===== FOOTER =====-->
<footer>
<div class="container">
<small>Copyright © 2022 Himang</small>
</div>
</footer>
</body>
</html>