-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (38 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Dashboard</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="welcome-container" class="center-screen" >
<style >p {text-align: center;}</style >
<p>
Welcome to my parser for the MMF .csv files. <br>
Download your .csv files from MMF and upload them here to get <br>
a more interactive and comprehensive view of the sales. <br>
Needless to say, we are *not* storing any data that is being uploaded. <br>
In fact, you can host this yourself, the code is on the <a href="https://github.com/thelazyone/mmf-charts">Github repo</a>.
</p>
<button id="load-files">Load Files</button>
</div>
<input type="file" id="file-input" multiple style="display:none;">
<div id="dashboard" class="dashboard" style="display:none;">
<div class="sidebar" id="sidebar">
<button id="select-all">Select All</button>
<button id="select-none">Select None</button>
<button id="recalculate">Recalculate</button>
<input type="text" id="search-input" placeholder="Search items..." />
<div id="item-list"></div>
</div>
<div class="charts">
<div id="chart-container-1" class="chart-container"></div>
<label for="moving-average-window">Moving Average Window Size:</label>
<input type="number" id="moving-average-window" name="moving-average-window" min="1" value="30">
</div>
</div>
<script src="dist/bundle.js"></script>
</body>
</html>