-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 1.96 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>City To ExpenseManager Converter</title>
</head>
<body>
Hello, I'm a converter. Please choose the file and submit the form
<form method="post" enctype="multipart/form-data">
<div>
<label for="file">Choose file to convert *</label>
<input type="file" id="file" name="file" accept=".csv" required>
</div>
<div>
<label for="categories-mapping">Choose JSON file with categories mapping</label>
<input type="file" id="categories-mapping" name="categoriesMapping" accept=".json">
</div>
<p>Select Bank</p>
<div>
<label for="citi">Citi</label>
<input type="radio" id="city" name="bank" value="city" checked/>
</div>
<div>
<label for="santander">Santander</label>
<input type="radio" id="santander" name="bank" value="santander"/>
</div>
<div>
<label for="velobank">Velobank</label>
<input type="radio" id="velobank" name="bank" value="velobank"/>
</div>
<div>
<label for="revolut">Revolut</label>
<input type="radio" id="revolut" name="bank" value="revolut"/>
</div>
<div>
<label for="monobank">Monobank</label>
<input type="radio" id="monobank" name="bank" value="monobank"/>
</div>
<div>
<label for="pekao">Pekao</label>
<input type="radio" id="pekao" name="bank" value="pekao"/>
</div>
<div>
<label for="pko">PKO</label>
<input type="radio" id="pko" name="bank" value="pko"/>
</div>
<div>
<label for="nest">Nest</label>
<input type="radio" id="nest" name="bank" value="nest"/>
</div>
<div>
<button>Submit</button>
</div>
</form>
</body>
</html>