-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matemo Data Converter</title>
<style>
html {
font-family: sans-serif;
}
h1 {
line-height: 2em;
}
h1 img {
height: 2em;
vertical-align: bottom;
}
.hidden {
display: none;
}
</style>
</head>
<body>
<h1><img src="kum-logo.svg" alt="KUM Logo"/> Matemo Data Converter</h1>
<div id="app" class="hidden">
<div>
Select a Matemo.bin file:
<input type="file" @change="select"/>
</div>
<p v-if="message !== 0">{{locale.message(message)}}</p>
<div v-else>
<p>Save data as: <a href="javascript:;" @click="saveTxt()">TXT</a>, <a href="javascript:;" @click="saveJson()">JSON</a>, <a href="javascript:;" @click="saveCsv()">CSV</a>, <a href="javascript:;" @click="saveExcelCsv()">Excel CSV (Comma)</a>, <a href="javascript:;" @click="saveExcelCsv2()">Excel CSV (Semicolon)</a></p>
<pre><code>{{txt}}</code></pre>
</div>
</div>
<script src="vue.global.prod.js"></script>
<script src="matemo.js"></script>
<script src="main.js"></script>
<script>
document.getElementById('app').classList.remove('hidden')
</script>
</body>
</html>