-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (39 loc) · 1.68 KB
/
index.html
File metadata and controls
45 lines (39 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Foxhole Inventory Report</title>
<meta charset="utf-8" />
<meta name="description" content="Processes stockpile screenshots to produce graphical and spreadsheet reports." />
<meta name="referrer" content="same-origin" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="includes/main.css" />
<link rel="modulepreload" href="includes/frontend.mjs" />
<script defer crossorigin src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js" integrity="sha512-BNaRQnYJYiPSqHHDb58B0yaPfCu+Wgds8Gp/gU33kqBtgNS4tSPHuGibyoeqMV/TJlSKda6FXzoEyYGjTe+vXA=="></script>
<script defer crossorigin src="https://apis.google.com/js/api.js"></script>
<script defer src="https://accounts.google.com/gsi/client"></script>
<script type="module" src="includes/main.js"></script>
</head>
<body>
<h2>Foxhole Inventory Report</h2>
<ol>
<li>Screenshot multiple inventories from the map view in-game. Do this in the order you'd like them to appear in the report.</li>
<li>
<form>
<label>Select map screenshots:
<input accept="image/*" type="file" multiple>
</label>
</form>
</li>
<li>Wait for processing to complete.
<div>Processed: <span>0 of 0</span></div>
</li>
<li>Edit the red titles by clicking on them.</li>
<li><button class="collage">Download Collage</button>
<button class="totals">Download Totals</button>
<button class="tsv">Download TSV</button>
<button class="append-google">Append to Google Spreadsheet</button></li>
</ol>
<div class="render"></div>
<div class="report"></div>
</body>
</html>