-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshipping.html
132 lines (120 loc) · 4.98 KB
/
shipping.html
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
<meta name="viewport" content="width=device-width">
<!-- Favicon and title -->
<link rel="icon" href="assets/img/fav.png">
<title>Admin Panel - DictPay</title>
<!-- Halfmoon CSS -->
<link href="assets/css/halfmoon-variables.css" rel="stylesheet">
<link href="assets/css/custom.css" rel="stylesheet">
<!-- Fonts --->
<link rel="stylesheet" type="text/css" href="assets/fonts/font-awesome/css/all.min.css">
<!--
Or,
Use the following (no variables, supports IE11):
<link href="https://cdn.jsdelivr.net/npm/[email protected]/css/halfmoon.min.css" rel="stylesheet">
Learn more: https://www.gethalfmoon.com/docs/customize/#notes-on-browser-compatibility
-->
</head>
<body class="with-custom-webkit-scrollbars with-custom-css-scrollbars" data-dm-shortcut-enabled="true" data-sidebar-shortcut-enabled="true" data-set-preferred-mode-onload="true">
<!-- Modals go here -->
<!-- Reference: https://www.gethalfmoon.com/docs/modal -->
<!-- Page wrapper start -->
<div class="page-wrapper with-navbar with-sidebar" data-sidebar-type="full-height overlayed-sm-and-down">
<!-- Sidebar overlay -->
<div class="sidebar-overlay" onclick="halfmoon.toggleSidebar()"></div>
<!-- Sticky alerts (toasts), empty container -->
<!-- Reference: https://www.gethalfmoon.com/docs/sticky-alerts-toasts -->
<div class="sticky-alerts"></div>
<!-- Navbar start -->
<nav class="navbar border-bottom-0">
<!-- Reference: https://www.gethalfmoon.com/docs/navbar -->
<div class="navbar-content">
<button id="toggle-sidebar-btn" class="btn btn-action" type="button" onclick="halfmoon.toggleSidebar()">
<i class="fa fa-bars" aria-hidden="true"></i>
</button>
</div>
<ul class="navbar-nav ml-auto">
<button class="btn btn-action mr-5" type="button" aria-label="Toggle dark mode" onclick="halfmoon.toggleDarkMode()">
<i class="fa fa-moon" aria-hidden="true"></i>
</button>
<!-- User menu -->
<li class="nav-item dropdown with-arrow">
<a class="nav-link" data-toggle="dropdown" id="avatar-popover-toggle" aria-haspopup="true" aria-expanded="false">
<!-- Username Avatar -->
<img src="./assets/img/avatar.png" class="rounded w-25 h-25 mr-10" alt="avatar">
JimScope
<i class="fa fa-angle-down ml-5" aria-hidden="true"></i>
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="nav-link-dropdown-toggle">
<a href="#" class="dropdown-item">Preferences</a>
<a href="#" class="dropdown-item">Logout</a>
</div>
</li>
</ul>
</nav>
<!-- Navbar end -->
<!-- Sidebar start -->
<div class="sidebar">
<!-- Reference: https://www.gethalfmoon.com/docs/sidebar -->
<div class="sidebar-menu">
<h6 class="sidebar-title">Homepage</h6>
<div class="sidebar-divider"></div>
<a href="index.html" class="sidebar-link sidebar-link-with-icon">
<span class="sidebar-icon">
<i class="fa fa-align-left" aria-hidden="true"></i>
</span>
Dashboard
</a>
<br>
<h6 class="sidebar-title">Checkout</h6>
<div class="sidebar-divider"></div>
<a href="payment.html" class="sidebar-link sidebar-link-with-icon active">
<span class="sidebar-icon">
<i class="fa fa-credit-card" aria-hidden="true"></i>
</span>
Payment Methods
</a>
<a href="shipping.html" class="sidebar-link sidebar-link-with-icon">
<span class="sidebar-icon">
<i class="fa fa-truck" aria-hidden="true"></i>
</span>
Shipping Methods
</a>
<br>
<h6 class="sidebar-title">Help</h6>
<div class="sidebar-divider"></div>
<a href="documentation.html" class="sidebar-link sidebar-link-with-icon">
<span class="sidebar-icon">
<i class="fa fa-code" aria-hidden="true"></i>
</span>
Documentation
</a>
<a href="support.html" class="sidebar-link sidebar-link-with-icon">
<span class="sidebar-icon">
<i class="fa fa-question" aria-hidden="true"></i>
</span>
Support
</a>
</div>
</div>
<!-- Sidebar end -->
<!-- Content wrapper start -->
<div class="content-wrapper">
<!-- Container-fluid -->
<div class="container-fluid">
<!-- First comes a content container with the main title -->
</div>
</div>
<!-- Page wrapper end -->
<!-- Halfmoon JS -->
<script src="assets/js/halfmoon.min.js"></script>
<script src="assets/js/echarts.min.js"></script>
<script src="assets/js/custom.js"></script>
</body>
</html>