diff options
Diffstat (limited to 'static/website/templates/index.html')
-rw-r--r-- | static/website/templates/index.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/static/website/templates/index.html b/static/website/templates/index.html new file mode 100644 index 0000000..e8de9b2 --- /dev/null +++ b/static/website/templates/index.html @@ -0,0 +1,53 @@ +<html> + <head> + <title>Scilab on Cloud</title> + <link href="/static/website/css/base.css" rel="stylesheet"/> + <link href="/static/website/css/skeleton.css" rel="stylesheet"/> + <link href="/static/website/css/layout.css" rel="stylesheet"/> + <link href="/static/website/css/main.css" rel="stylesheet"/> + </head> + <body> + <div id="header-wrapper"> + <div id="header-inner"> + <div id="topbar"> + Scilab on Cloud + </div> + </div> <!-- /#header-inner --> + </div> <!-- /#header-wrapper --> + + <div id="content-wrapper"> + <div id="content-inner"> + <div id="selectors"> + <select><option></option></select> + <select><option></option></select> + <select><option></option></select> + <select><option></option></select> + </div> + <div id="content"> + + <div id="input"> + <span>Scilab Code</span> + <textarea></textarea> + </div><!-- /#input --> + <a id="execute" class="button">Execute</a> + + <div id="output"> + <span>Result</span> + <textarea></textarea> + </div> <!-- /#output --> + <a id="bug" class="button">Report bug / Give Feedback</a> + + <div id="credits"> + <small> + Disclaimer: Scilab is a trademark of Inria + (registered at the INPI for France and the rest of the World) + and Scilab Enterprises is granted exclusive rights for + Scilab Trademark. + </small> + Copyright IIT Bombay + </div> + </div> <!-- /#content --> + </div> <!-- /#content-inner --> + </div> <!-- /#content-wrapper --> + </body> +</html> |