OLD | NEW |
1 <!-- | 1 <!-- |
2 Copyright (c) 2010 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2010 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 --> | 5 --> |
6 | 6 |
7 <html> | 7 <html> |
8 <head> | 8 <head> |
9 <script type="text/javascript" src="client.js"></script> | 9 <script type="text/javascript" src="client.js"></script> |
10 <title>Get hosts</title> | 10 <title>Get hosts</title> |
11 </head> | 11 </head> |
12 <body onload="init_params();"> | 12 <body onload="init_params();" style="width:250;"> |
13 | 13 |
14 <div style="border: blue 1px dotted;"> | 14 <div style="border: blue 1px dotted;"> |
15 <form name="hostqueryform" action="" method="GET"> | 15 <form name="hostqueryform" action="" method="GET"> |
16 Fill-in to reauthenticate. <br /> | 16 Fill-in to reauthenticate. <br /> |
17 U: <input type="text" name="username" id="username" value="" /> <br /> | 17 U: <input type="text" name="username" id="username" value="" /> <br /> |
18 P: <input type="password" name="password" id="password" value="" /> <br /> | 18 P: <input type="password" name="password" id="password" value="" /> <br /> |
19 <input type="button" name="login_button" value="Log In" onclick="login(this.
form)" /> | 19 <input type="button" name="login_button" value="Log In" onclick="login(this.
form)" /> |
20 </form> | 20 </form> |
21 </div> | 21 </div> |
22 | 22 |
(...skipping 10 matching lines...) Expand all Loading... |
33 <form name="connectform" action="" method="GET"> | 33 <form name="connectform" action="" method="GET"> |
34 Conenct directly to host using auth cookies. Find Hosts doesn't require the
host_jid to be filled out. <br /> | 34 Conenct directly to host using auth cookies. Find Hosts doesn't require the
host_jid to be filled out. <br /> |
35 host_jid: <input type="text" name="host_jid" id="host_jid" value="" /> <br /
> | 35 host_jid: <input type="text" name="host_jid" id="host_jid" value="" /> <br /
> |
36 <input type="button" name="connect_button" value="Connect" onclick="connect(
this.form)" /> | 36 <input type="button" name="connect_button" value="Connect" onclick="connect(
this.form)" /> |
37 <input type="button" name="find_host_button" value="Find Hosts" onclick="fin
d_hosts(this.form)" /> | 37 <input type="button" name="find_host_button" value="Find Hosts" onclick="fin
d_hosts(this.form)" /> |
38 </form> | 38 </form> |
39 </div> | 39 </div> |
40 | 40 |
41 <br /> | 41 <br /> |
42 | 42 |
43 <div id="debug_div" style="border: red 1px solid;"> | 43 <div id="hostlist_div" style="border: blue 1px solid; display: none;"> |
44 -- Debugging messages go here -- <br /> | |
45 </div> | 44 </div> |
46 | 45 |
47 <br /> | 46 <br /> |
48 | |
49 <div id="hostlist_div" style="border: blue 1px solid;"> | |
50 -- Hosts go here -- <br /> | |
51 </div> | |
52 | |
53 <br /> | |
54 | |
55 <div id="plugin_div" style="border: black 1px dashed;"> | |
56 <embed width="100%" height="100%" name="chromoting" id="chromoting" | |
57 src="about://none" type="pepper-application/x-chromoting"> | |
58 </div> | |
59 </body> | 47 </body> |
60 </html> | 48 </html> |
OLD | NEW |