diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-01-27 23:27:27 +0000 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-01-27 23:27:27 +0000 |
| commit | 8e831bf7f734b47fe084ee9851ab4772cbb20d2d (patch) | |
| tree | c525e1798375447d431848d488e6a80de2b23650 /index.html | |
| parent | d132e09cdaeb89a164314962d8ee8de722d61549 (diff) | |
| download | sql-plus-plus-8e831bf7f734b47fe084ee9851ab4772cbb20d2d.tar.xz sql-plus-plus-8e831bf7f734b47fe084ee9851ab4772cbb20d2d.zip | |
Add connection pool, code editor and data grid
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..cc12618 --- /dev/null +++ b/index.html @@ -0,0 +1,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>
\ No newline at end of file |