Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Side by Side Diff: remoting/client/extension/hostlist.html

Issue 6518013: Update Chromoting login UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove old gaia css Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/client/extension/client.js ('k') | remoting/client/extension/login.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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="base.js"></script> 9 <script type="text/javascript" src="base.js"></script>
10 <script type="text/javascript" src="client.js"></script> 10 <script type="text/javascript" src="client.js"></script>
11 <link rel="stylesheet" type="text/css" href="main.css" /> 11 <link rel="stylesheet" type="text/css" href="main.css" />
12 <title>Remote Access</title> 12 <title>Remote Access</title>
13 </head> 13 </head>
14 <body class="hostlist_body" onload="init();"> 14 <body class="hostlist_body" onload="init();">
15 15
16 <h1>Remote Access</h1> 16 <h1>Remote Access</h1>
17 17
18 <div id="login_panel" class="gaia_login_panel">
19 <table cellspacing="3" cellpadding="5" border="0"><tr><td valign="top"
20 style="text-align:center" nowrap="nowrap" bgcolor="#e8eefa">
21 <table align="center" border="0" cellpadding="1" cellspacing="0">
22 <tr>
23 <td align="center" colspan="2">
24 <font size="-1">Sign in with your</font>
25 <table><tr>
26 <td valign="top"><img src="https://www.google.com/accounts/googl e_transparent.gif"
27 alt="Google"></img></td>
28 <td valign="middle"><font size="+0"><b>Account</b></font></td>
29 </tr></table>
30 </td>
31 </tr><tr>
32 <td align="right" nowrap="nowrap">
33 <span class="gaia_font">Username:</span>
34 </td><td>
35 <input type="text" id="username" value="" class="gaia_font"/>
36 </td>
37 </tr><tr>
38 <td align="right" nowrap="nowrap">
39 <span class="gaia_font">Password:</span>
40 </td><td>
41 <input type="password" id="password" value=""
42 class="gaia_font"/>
43 </td>
44 </tr><tr>
45 <td></td>
46 <td align="left">
47 <div class="error_msg" id="errormsg_div"></div>
48 </td>
49 </tr><tr>
50 <td></td>
51 <td><input type="button" value="Sign in" class="gaia_font"
52 onclick="login();"/></td>
53 </tr>
54 </table>
55 </tr></td></table>
56 </div>
57
18 <div id="login_div" class="login"> 58 <div id="login_div" class="login">
19 </div> 59 </div>
20 60
21 <p class="reload"> 61 <p class="reload">
22 <a href="javascript:populateHostList()">Reload host list</a> 62 <a href="javascript:populateHostList()">Reload host list</a>
23 </p> 63 </p>
24 64
25 <input type=checkbox name="show_offline" id="show_offline" 65 <input type=checkbox name="show_offline" id="show_offline"
26 onClick="updateShowOfflineHosts(this)"/>Show offline hosts 66 onClick="updateShowOfflineHosts(this)"/>Show offline hosts
27 67
28 <div id="hostlist_div" class="hostlist"> 68 <div id="hostlist_div" class="hostlist">
29 <p class='message'>Initializing...</p> 69 <p class='message'>Initializing...</p>
30 </div> 70 </div>
31 71
32 <br /> 72 <br />
33 </body> 73 </body>
34 </html> 74 </html>
OLDNEW
« no previous file with comments | « remoting/client/extension/client.js ('k') | remoting/client/extension/login.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698