blob: cc126188eec27c2d7986e5a6f01fe2fbdcfc277b (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SQL++</title>
<link rel="stylesheet" href="node_modules/codemirror/lib/codemirror.css"></link>
<link rel="stylesheet" type="text/css" href="./style.css"></link>
<link rel="stylesheet" type="text/css" href="./table-style.css"></link>
</head>
<body>
<input id="run-query" type="button" value="Run"></input>
<div id="editor"></div>
<div class="results">
<table id="result-table" width="100%"></table>
</div>
<script>
require("./renderer.js");
</script>
</body>
</html>
|