This repository has been archived by the owner on Jan 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
62 lines (59 loc) · 2.53 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
<!doctype html>
<html class="no-js" lang="de">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>SQL Creator</title>
<meta name="description" content="Lightweight SQL Creator with multiple emulator support.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/grid.min.css">
<link rel="stylesheet" href="css/main.min.css">
</head>
<body>
<div class="container_12">
<div class="grid_12">
<h2>SQL Creator</h2>
</div>
<form action="" method="post">
<div id="formatter" class="grid_12">
<h3>Formatter</h3>
<select name="formatter">
<option selected disabled>Choose a formatter</option>
<option value="morningstar">Morningstar</option>
<option value="arcturus">Arcturus</option>
<option value="plus">Plus</option>
<option value="comet">Comet</option>
</select>
</div>
<div id="content"></div>
</form>
<div id="button" class="grid_12">
<button onclick="create();">CREATE</button>
</div>
<div id="result">
<div class="grid_12">
<h2>Result</h2>
</div>
<div class="grid_4">
<h3>catalog_items</h3>
<textarea id="catalogItems" onclick="this.focus(); this.select()" readonly></textarea>
</div>
<div class="grid_4">
<h3>items_base</h3>
<textarea id="itemsBase" onclick="this.focus(); this.select()" readonly></textarea>
</div>
<div class="grid_4">
<h3>furnidata.xml</h3>
<textarea id="furnidata" onclick="this.focus(); this.select()" readonly></textarea>
</div>
</div>
<footer class="grid_12">
<p style="text-align: center;">Made with <span style="color: #F44336">♥</span> by Higoka.</p>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="js/select.min.js"></script>
<script src="js/main.min.js"></script>
</body>
</html>