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 <title id="title">Chromoting Session</title> | 9 <title id="title">Chromoting Session</title> |
10 <link rel="stylesheet" type="text/css" href="main.css" /> | 10 <link rel="stylesheet" type="text/css" href="main.css" /> |
11 <script type="text/javascript" src="base.js"></script> | 11 <script type="text/javascript" src="base.js"></script> |
12 <script type="text/javascript" src="chromoting_tab.js"></script> | 12 <script type="text/javascript" src="chromoting_tab.js"></script> |
13 </head> | 13 </head> |
14 <body class="chromoting_body" onload="init();"> | 14 <body class="chromoting_body" onload="init();"> |
15 <div id="status_msg" class="status_msg"></div> | 15 <div id="status_msg" class="status_msg"></div> |
16 <div id="login_panel" class="login_panel"> | 16 <div id="login_panel" class="local_login_panel"> |
17 <table> | 17 <table><tr><td valign="top" |
18 <tr><td>Username:</td><td><input type="text" id="username" value="demo"/
></td></tr> | 18 style="text-align:center" nowrap="nowrap" bgcolor="#e8eefa"> |
19 <tr><td>Password:</td><td><input type="password" id="password" value="no
ne" /></td></tr> | 19 <table align="center" border="0" cellpadding="1" cellspacing="0"> |
20 <tr><td colspan="2"><input type="button" value="Login" onclick="submitLo
gin();" /></td></tr> | 20 <tr> |
21 </table> | 21 <td align="center" colspan="2"> |
| 22 Sign in to remote host |
| 23 </td> |
| 24 </tr><tr> |
| 25 <td align="right" nowrap="nowrap"> |
| 26 <span class="gaia_font">Username:</span> |
| 27 </td><td> |
| 28 <input type="text" id="username" value="" class="gaia_font"/> |
| 29 </td> |
| 30 </tr><tr> |
| 31 <td align="right" nowrap="nowrap"> |
| 32 <span class="gaia_font">Password:</span> |
| 33 </td> |
| 34 <td> |
| 35 <input type="password" id="password" value="" class="gaia_font"/> |
| 36 </td> |
| 37 </tr><tr> |
| 38 <td></td> |
| 39 <td><input type="button" value="Sign in" class="gaia_font" |
| 40 onclick="submitLogin();"/></td> |
| 41 </tr> |
| 42 </table> |
| 43 </tr></td></table> |
22 </div> | 44 </div> |
23 <div id="plugin_scroll_panel" class="plugin-scroll-panel"> | 45 <div id="plugin_scroll_panel" class="plugin-scroll-panel"> |
24 <embed name="chromoting" id="chromoting" | 46 <embed name="chromoting" id="chromoting" |
25 src="about://none" type="pepper-application/x-chromoting"> | 47 src="about://none" type="pepper-application/x-chromoting"> |
26 </div> | 48 </div> |
27 </body> | 49 </body> |
28 </html> | 50 </html> |
OLD | NEW |