blob: fe6e6936ba11f7ee28a5d916405c24fc73b16177 (
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
|
<!--
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_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>
|