-
Notifications
You must be signed in to change notification settings - Fork 0
/
inventory.html
96 lines (87 loc) · 2.55 KB
/
inventory.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSGO Inventory</title>
<script src="inventory.js"></script>
<style>
.hidden {
display: none;
}
</style>
</head>
<body>
<!-- #region LOADING -->
<section id="stateLoading">
<span>Profile Loading...</span>
<div class="rotating"><span>■</span></div>
</section>
<!-- #endregion -->
<!-- #region ERROR -->
<section id="stateError" class="hidden">
<span>Errored</span>
</section>
<!-- #endregion -->
<!-- #region Inventory -->
<section id="stateSuccess" class="hidden">
<section id="inventory">
<section class="container center header">
<!-- BEGIN Profile Details -->
<section id="profileArea">
<img id="profileImage" class="img-profile" src="" alt="profile image" />
<p id="profileSteamID" class="title"></p>
<p id="profileSteamID64">SteamID64 : </p>
<p id="profileSteamCustomURL">Custom URL : </p>
<p id="profileVacBanned">Vac Banned : </p>
<p id="profileTradeBanned">Trade Banned : </p>
<p id="profileLimited">Limited : </p>
<p id="profileLastLogin"></p>
<p>Steam Profile
<p id="loadingSteamProfile"></p>
</p>
<p>Steam Inventory
<p id="loadingSteamInventory"></p>
</p>
<p>Steam Prices
<p id="loadingSteamPrices"></p>
</p>
<p>OpSkins Prices
<p id="loadingOpSkinsPrices"></p>
</p>
<p>BitSkins Prices
<p id="loadingBitSkinsPrices"></p>
</p>
</section>
<!-- END Profile Details -->
<!-- BEGIN Inventory Table -->
<section id="inventoryArea">
<section id="types">
</section>
<section id="inventory-table">
<table>
<thead>
<tr>
<th>Name</th>
<th>Amount</th>
<th id="thSteam">Steam</th>
<th id="thOpSkins">OpSkins</th>
<th id="thBitSkins">BitSkins</th>
</tr>
</thead>
<tbody id="tableBody">
</tbody>
</table>
</section>
</section>
<!-- END Inventory Table -->
<div style="display:none;">
<section class="priceStatus">
</section>
</div>
</section>
</section>
</section>
<!-- #endregion INVENTORY -->
</body>
</html>