-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathing-parser.html
More file actions
37 lines (31 loc) · 1.39 KB
/
ing-parser.html
File metadata and controls
37 lines (31 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Raport tranzacții din ING Homebank to structured data</title>
</head>
<body>
<div id="wrapper">
<div id="drop-area">
<p><u class="upicon">⇧</u> <b>raport tranzacții</b> ING (.xls/x) <br> <small>(or click to browse)</small></p>
<input type="file" id="fileInput" class="hidden" accept=".xls,.xlsx" />
<p id="file-name"></p> <!-- Element to display the file name -->
</div>
<div id="options">
<select id="outputFormat">
<option value="xlsx" selected>XLSX</option>
<option value="csv">CSV</option>
<option value="json">JSON</option>
</select>
<button id="convertButton">Convert</button>
</div>
<small id="credits"><a href="https://github.com/pax/ing-parser/">info → github</a></small>
</div>
<div id="iimg"><img src="assets/export-tranzactii.png" alt=""></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.17.0/xlsx.full.min.js"></script>
<!-- <script src="assets/xlsx.full.min.js"></script> -->
<script src="assets/ing-parser.js"></script>
<link rel="stylesheet" type="text/css" href="assets/style.css">
</body>
</html>