blob: 2e55a363bcb5819a1736d8775e33f85e16c70a77 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<!--
Copyright (c) 2010 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<head>
<script type="text/javascript" src="base.js"></script>
<script type="text/javascript" src="client.js"></script>
<link rel="stylesheet" type="text/css" href="main.css" />
<title>Remote Access</title>
</head>
<body class="hostlist_body" onload="init();">
<h1>Remote Access</h1>
<div id="login_panel" class="gaia_login_panel">
<table cellspacing="3" cellpadding="5" border="0"><tr><td valign="top"
style="text-align:center" nowrap="nowrap" bgcolor="#e8eefa">
<table align="center" border="0" cellpadding="1" cellspacing="0">
<tr>
<td align="center" colspan="2">
<font size="-1">Sign in with your</font>
<table><tr>
<td valign="top"><img src="https://www.google.com/accounts/google_transparent.gif"
alt="Google"></img></td>
<td valign="middle"><font size="+0"><b>Account</b></font></td>
</tr></table>
</td>
</tr><tr>
<td align="right" nowrap="nowrap">
<span class="gaia_font">Username:</span>
</td><td>
<input type="text" id="username" value="" class="gaia_font"/>
</td>
</tr><tr>
<td align="right" nowrap="nowrap">
<span class="gaia_font">Password:</span>
</td><td>
<input type="password" id="password" value=""
class="gaia_font"/>
</td>
</tr><tr>
<td></td>
<td align="left">
<div class="error_msg" id="errormsg_div"></div>
</td>
</tr><tr>
<td></td>
<td><input type="button" value="Sign in" class="gaia_font"
onclick="login();"/></td>
</tr>
</table>
</tr></td></table>
</div>
<div id="login_div" class="login">
</div>
<p class="reload">
<a href="javascript:populateHostList()">Reload host list</a>
</p>
<input type=checkbox name="show_offline" id="show_offline"
onClick="updateShowOfflineHosts(this)"/>Show offline hosts
<div id="hostlist_div" class="hostlist">
<p class='message'>Initializing...</p>
</div>
<br />
</body>
</html>
|