-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (26 loc) · 856 Bytes
/
index.html
File metadata and controls
33 lines (26 loc) · 856 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>SQL Insert Viewer</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1>SQL Insert Viewer</h1>
<div class="controls">
<button id="toggleBtn">Switch to View Mode</button>
<span id="msg" class="msg"></span>
</div>
<div id="inputArea">
<textarea id="sqlInput" placeholder="INSERT INTO ..."></textarea>
</div>
<div id="viewArea" class="hidden" aria-hidden="true">
<div id="rendered"></div>
<div class="hint">Click a column name to highlight values in that column. Click again to clear.</div>
</div>
</div>
<script src="nodesqlparser.umd.js"></script>
<script src="app.js"></script>
</body>
</html>