-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (109 loc) · 4.85 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-708YYNGNGQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-708YYNGNGQ');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="css/site.min.css" />
<title>Death Stranding Porteria</title>
</head>
<body>
<div class="container-fluid">
<h1>Death Stranding Porteria</h1>
<order-page>
<h2>Standard Orders</h2>
<order-filter class="panel-filter">
<form class="frm-filter">
<div class="card">
<div class="card-body">
<div class="input-group mb-3">
<select class="form-select cbo-filter-loc-type" required>
<option value="0">None</option>
<option value="1">From Location</option>
<option value="2">To Location</option>
</select>
<select class="form-select cbo-filter-loc" disabled>
</select>
</div>
<div class="row list-filter-completion">
<template>
<div class="col">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" checked>
<label class="form-check-label">
<img class="h-1" />
<span class="name"></span>
</label>
</div>
</div>
</template>
</div>
</div>
<div class="card-footer text-center">
<button class="btn btn-primary">Apply Filter</button>
<button type="button" class="btn btn-danger btn-clear">Clear Filter</button>
</div>
</div>
</form>
</order-filter>
<div class="table-responsive">
<table class="table table-striped table-hover">
<thead>
<tr>
<th class="text-end">#</th>
<th>Name</th>
<th>From</th>
<th>To</th>
<th>Cargo</th>
<th>Max Likes</th>
</tr>
</thead>
<tbody class="list-orders"></tbody>
</table>
</div>
<div class="cover loader">
<span class="spinner-border"></span>
</div>
<template class="template-order-item">
<tr>
<td>
<a href="#" class="btn-change-completion">
<span class="order-no"></span>
<img class="order-completion h-1" />
</a>
</td>
<td>
<span class="order-name"></span><br />
<small class="text-muted order-tags"></small>
</td>
<td class="order-from"></td>
<td class="order-to"></td>
<td>
<span>
<img class="h-1" src="img/scale.png" />
<span class="cargo-weight"></span>kg
</span><br />
<span class="cargo-sizes"></span>
</td>
<td>
<span class="order-like-std"></span>
<br />
<span class="order-like-pre"></span>
</td>
</tr>
</template>
</order-page>
</div>
<script defer type="module" src="js/common.js"></script>
<script defer type="module" src="js/OrderPage.js"></script>
</body>
</html>