-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
54 lines (39 loc) · 1.12 KB
/
admin.php
File metadata and controls
54 lines (39 loc) · 1.12 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
<?php include_once "connect.php";
if (!isset($_SESSION['user_login'])) {
header('location:login.php');
exit();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include_once "inc/head.php" ?>
</head>
<body class="hold-transition sidebar-mini">
<div class="wrapper">
<?php include_once "inc/nav.php" ?>
<!-- /.navbar -->
<!-- Main Sidebar Container -->
<?php include_once "inc/sidebar.php" ?>
<!-- Content Wrapper. Contains page content -->
<section>
<div class="content-wrapper">
<?php if(!empty($msg)): ?>
<div class="text-center alert alert-<?=$sts?>"><?=$msg?></div>
<?php endif; ?>
<!-- Content Header (Page header) -->
<h2 class="font-weight-bold text-center mb-5 pt-4">Edit Your E-Commerce Shipping Calculator</h2>
<!---------------------Card--------------------->
<!---------------------Card--------------------->
</div>
</section>
<!-- /.content-wrapper -->
<!-- Main Footer -->
<?php include_once "inc/footer.php" ?>
</div>
<!-- ./wrapper -->
<!-- REQUIRED SCRIPTS -->
<!-- jQuery -->
<?php include_once "inc/foot.php" ?>
</body>
</html>