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 le lbl">Username:</span> | |
Sergey Ulanov
2011/02/17 20:22:30
update class name here? and below?
| |
27 </td><td> | |
28 <input type="text" id="username" value="" class="gaia le val"/> | |
29 </td> | |
30 </tr><tr> | |
31 <td align="right" nowrap="nowrap"> | |
32 <span class="gaia le lbl">Password:</span> | |
33 </td> | |
34 <td> | |
35 <input type="password" id="password" value="" | |
36 class="gaia le val"/> | |
37 </td> | |
38 </tr><tr> | |
39 <td></td> | |
40 <td><input type="button" value="Sign in" class="gaia le button" | |
41 onclick="submitLogin();"/></td> | |
42 </tr> | |
43 </table> | |
44 </tr></td></table> | |
22 </div> | 45 </div> |
23 <div id="plugin_scroll_panel" class="plugin-scroll-panel"> | 46 <div id="plugin_scroll_panel" class="plugin-scroll-panel"> |
24 <embed name="chromoting" id="chromoting" | 47 <embed name="chromoting" id="chromoting" |
25 src="about://none" type="pepper-application/x-chromoting"> | 48 src="about://none" type="pepper-application/x-chromoting"> |
26 </div> | 49 </div> |
27 </body> | 50 </body> |
28 </html> | 51 </html> |
OLD | NEW |