forked from ZanderAdam/StellarTransactionExport
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
45 lines (39 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Lumenaut Payments Export</title>
</head>
<body>
<section id="tax">
<h2>Lumenaut Payments Export</div>
<p>This will export the payments sent by Lumenaut to a given Public Key. Input the Public Key bellow and press the button "Load" to get the payment's information directly from the network. If desired you can export a CSV file with the payment's information by pressing the button "Export CSV".</p>
<select id="timeframe">
<option value="30days">Last 30 Days</option>
<option value="year">Last Year</option>
<option value="prevYear">Previous Year</option>
</select>
<input type="text" id="address" placeholder="input your Public Key here...">
<small>We don't store anything on our server, calculation is done locally on your browser. <a href="https://github.com/Lumenaut-Network/lumenaut-payments-export" target="_blank">More Info</a></small>
<input type="button" value="Load" class="btn" id="load">
<input type="button" value="Export CSV" class="btn" id="csv" disabled>
<table>
<thead>
<tr>
<th>Date</th>
<th>Amount</th>
</tr>
</thead>
<tbody id="data">
<tr>
<td colspan="2">No Public Key loaded...</td>
</tr>
</tbody>
</table>
</section>
<!-- Moment -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.21.0/moment.js" integrity="sha384-ahj+s6Xl73DCw/77Z2uM/ETxQh9LuG2dUkcEaATtk1AY3hsJlOq1aFj8xInGmtOU" crossorigin="anonymous"></script>
<!-- JS -->
<script src="main.js"></script>
</body>
</html>