summaryrefslogtreecommitdiffstats
path: root/web/client.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'web/client.xhtml')
-rw-r--r--web/client.xhtml42
1 files changed, 42 insertions, 0 deletions
diff --git a/web/client.xhtml b/web/client.xhtml
new file mode 100644
index 0000000..eea0040
--- /dev/null
+++ b/web/client.xhtml
@@ -0,0 +1,42 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+
+<!--
+ Copyright (c) 2012-2014 Kaarle Ritvanen
+ See LICENSE file for license details
+-->
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <link rel="stylesheet" type="text/css" href="client.css"></link>
+ <script type="text/javascript" data-main="client.js" src="lib/require.js">
+ </script>
+ </head>
+ <body>
+ <div id="status">
+ <p></p>
+ <input id="logout" class="hidden" type="submit" value="Logout"></input>
+ <div class="hidden">
+ <input id="revert" type="submit" value="Revert"></input>
+ <input id="commit" type="submit" value="Commit"></input>
+ </div>
+ </div>
+ <ul id="modules"></ul>
+ <ul id="tabs"></ul>
+ <div id="content">
+ <form id="login">
+ <table>
+ <tr>
+ <td>Username</td>
+ <td><input id="username" type="text"></input></td>
+ </tr>
+ <tr>
+ <td>Password</td>
+ <td><input id="password" type="password"></input></td>
+ </tr>
+ </table>
+ <input type="submit" value="Login"></input>
+ </form>
+ </div>
+ </body>
+</html>