-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathseller_home.php
69 lines (64 loc) · 1.79 KB
/
seller_home.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
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
59
60
61
62
63
64
65
66
67
68
69
<?php
include 'connect.php';
if (!isset($_SESSION['email'])) {
header('location: login.php');
}
else if ($_SESSION['email'] != "[email protected]") {
header('location: home.php');
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Proyek Tekweb</title>
<?php include('assets/header.php'); ?>
<script src="js/all_home_func.js"></script>
<script src="js/seller_home_func.js"></script>
<link rel="stylesheet" type="text/css" href="assets/sidebar_seller.css">
<link rel="stylesheet" type="text/css" href="css/seller_home_style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<?php include('assets/navbar_seller.php'); ?>
<div class="fluid-container" style="overflow-x: hidden;">
<div class="row">
<?php include('assets/sidebar_seller.php'); ?>
<div class="col-10 ml-3 mt-4">
<h4>Penting hari ini</h4>
<div class="row">
<div class="card col-3 m-2 border rounded glow">
<div class="card-content">
<p>Pesanan baru</p>
<div id="pesananBaru"> </div>
</div>
</div>
<div class="card col-3 m-2 border rounded glow">
<div class="card-content">
<p>Siap dikirim</p>
<div id="siapDikirim"> </div>
</div>
</div>
<div class="card col-3 m-2 border rounded glow">
<div class="card-content">
<p>Komplain pesanan</p>
<div id="komplainPesanan"> </div>
</div>
</div>
<div class="card col-3 m-2 border rounded glow">
<div class="card-content">
<p>Diskusi baru</p>
<div id="diskusiBaru"> </div>
</div>
</div>
<div class="card col-3 m-2 border rounded glow">
<div class="card-content">
<p>Ulasan baru</p>
<div id="ulasanBaru"> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>