-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
73 lines (73 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/src/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FDB to SQLite | FDB Converter</title>
<meta
name="description"
content="Convert FDB files of the game LEGO Universe to SQLite files. The conversion takes place entirely client-side. Nothing is uploaded to a server."
/>
<meta name="color-scheme" content="light dark" />
</head>
<body class="surface on-surface-text body-large">
<div>
<h1 class="display-large">FDB to SQLite</h1>
<p class="title-large">
Convert FDB files of the game LEGO Universe to SQLite files.
</p>
</div>
<label>
<h2 class="headline-small">FDB File</h2>
<div class="file-icon material-icons-outlined">upload_file</div>
<p>Drag and drop your FDB file or click to select your FDB file.</p>
<input
type="file"
accept=".fdb"
data-input-extension="fdb"
data-output-extension="sqlite"
/>
<md-ripple></md-ripple>
</label>
<div>
<p>
The conversion takes place entirely client-side. Nothing is uploaded to
a server.
</p>
<p>
Based on
<a class="primary-text" href="https://assembly.lu-dev.net/">
Assembly RS</a
>. The source code of this website can be found
<a class="primary-text" href="https://github.com/IAmMajo/FDB-Converter">
here</a
>.
</p>
</div>
<md-navigation-bar>
<nav>
<a href="/">
<md-navigation-tab label="FDB to SQLite" active>
<span slot="activeIcon" class="material-icons">circle</span>
</md-navigation-tab>
</a>
<a href="/sqlite-to-fdb/">
<md-navigation-tab label="SQLite to FDB">
<span slot="inactiveIcon" class="material-icons-outlined">
square
</span>
</md-navigation-tab>
</a>
<a href="/xml-to-fdb/">
<md-navigation-tab label="XML to FDB">
<span slot="inactiveIcon" class="material-icons-outlined">
hexagon
</span>
</md-navigation-tab>
</a>
</nav>
</md-navigation-bar>
<script type="module" src="/src/main.js"></script>
</body>
</html>