blob: 68164e151cca19cd800e90fd0ba7fbbac1465d03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<!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" src="underscore.js"></script>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery-bbq.js"></script>
<script type="text/javascript" src="jquery-blockui.js"></script>
<script type="text/javascript" src="client.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></tr>
</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>
|