This repository has been archived by the owner on Feb 4, 2021. It is now read-only.
forked from otevrena-data-mfcr/cityvizor-kxx-trimmer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (65 loc) · 2.32 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<base href="/kxx-cleaner/">
<title>KXX Cleaner :: cityvizor.cz</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- iconv-lite -->
<script src="assets/lib/iconv-lite/iconv-lite.js"></script>
<!-- jQuery 3.3.1 -->
<script src="assets/lib/jquery/jquery-3.3.1.min.js"></script>
<!-- Bootstrap 4.1.0 -->
<link rel="stylesheet" href="assets/lib/bootstrap/css/bootstrap.min.css">
<script src="assets/lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- CUSTOM -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Trimmer logic -->
<script type="text/javascript" src="assets/js/bundle.js"></script>
</head>
<body>
<div id="header">
<header>
<div class="container">
<h1>CityVizor KXX Cleaner</h1>
</div>
</header>
</div>
<div id="page">
<div class="container">
<div class="row">
<div class="col-4" id="form">
<form class="form">
<h2>Načtěte soubor KXX</h2>
<div class="form-group">
<label for="fileInput">Soubor KXX</label>
<input type="file" class="form-control" id="fileInput">
</div>
<div class="form-group">
<label for="encodingInput">Kódování</label>
<select class="form-control" id="encodingInput">
<option>windows-1250</option>
<option>utf-8</option>
<option>iso-8859</option>
</select>
</div>
<h2>Spusťte čištění</h2>
<button type="submit">Vyčistit</button>
</form>
<h2>Stáhněte výsledek</h2>
<a id="download">Stáhnout soubor</a>
</div>
<div class="col-8" id="log">
<h2>Průběh procesu</h2>
<p>Stav: <span id="status">Nezahájeno.</span></p>
<p>Zpracováno záznamů: <span id="recordCount">0</span></p>
<p>Zpracováno faktur: <span id="invoiceCount">0</span></p>
<h3>Faktury</h3>
<div class="well" id="invoices">
</div>
</div>
</div>
</div>
</div>
</body>
</html>