diff options
author | Jayaram Pai | 2013-12-19 05:28:37 +0530 |
---|---|---|
committer | Jayaram Pai | 2013-12-19 05:28:37 +0530 |
commit | 4a929add0e1c1dce95e6829f6d39f37ae5960afb (patch) | |
tree | f0f0b5cbfbdbbd5a9141d5016095bcddc64a3775 /static/website/templates | |
download | scilab-on-cloud-4a929add0e1c1dce95e6829f6d39f37ae5960afb.tar.gz scilab-on-cloud-4a929add0e1c1dce95e6829f6d39f37ae5960afb.tar.bz2 scilab-on-cloud-4a929add0e1c1dce95e6829f6d39f37ae5960afb.zip |
initial commit
Diffstat (limited to 'static/website/templates')
-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> |