diff options
Diffstat (limited to 'html/editor-instance.html')
| -rw-r--r-- | html/editor-instance.html | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/html/editor-instance.html b/html/editor-instance.html new file mode 100644 index 0000000..eaa2599 --- /dev/null +++ b/html/editor-instance.html @@ -0,0 +1,45 @@ +<!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" href="../node_modules/codemirror/theme/dracula.css"></link> + <link rel="stylesheet" href="../node_modules/codemirror/addon/hint/show-hint.css"></link> + <link rel="stylesheet" href="../node_modules/jquery.tabulator/dist/css/tabulator.css"></link> + <link rel="stylesheet" type="text/css" href="../styles/editor-instance.css"></link> + <link rel="stylesheet" type="text/css" href="../styles/table-style.css"></link> + + </head> + + <body> + + <div class="flex-wrapper"> + <div class="row header"> + <input id="run-query" type="button" class="button" value="Run"></input> + </div> + + + <div class="row content"> + <div id="editor" class="editor-row split-row"></div> + + <div class="results-row split-row"> + <div id="result-table"></div> + <div id="result-error"></div> + </div> + </div> + + <div class="row footer"> + <div id="execution-status" class="exec-idle">Idle</div> + <div id="execution-time"></div> + <div id="cursor-coords"></div> + </div> + </div> + <script> + require("../editor-instance.js"); + </script> + </body> + +</html>
\ No newline at end of file |