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

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

Issue 3338014: Improve UI of Chromoting client UI to select available hosts. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: One more camel Created 10 years, 3 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
« no previous file with comments | « remoting/client/extension/icon.png ('k') | remoting/client/extension/machine.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!--
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
4 found in the LICENSE file.
5 -->
6
7 <html>
8 <head>
9 <script type="text/javascript" src="base.js"></script>
10 <script type="text/javascript" src="client.js"></script>
11 <link rel="stylesheet" type="text/css" href="main.css" />
12 <title>Sign in</title>
13 </head>
14 <body>
15
16 <form name="loginform" action="" method="GET">
17 <table>
18 <tr>
19 <td align="right">Email:</td>
20 <td align="left">
21 <input type="text" name="username" id="username" value="" />
22 </td>
23 </tr><tr>
24 <td align="right">Password:</td>
25 <td align="left">
26 <input type="password" name="password" id="password" value="" />
27 </td>
28 </tr><tr>
29 <td></td>
30 <td>
31 <input type="button" name="login_button" value="Log In"
32 onclick="login(this.form)" />
33 <td>
34 </table>
35 </form>
36
37 <div id="login_status">
38 </div>
39
40 </body>
41 </html>
OLDNEW
« no previous file with comments | « remoting/client/extension/icon.png ('k') | remoting/client/extension/machine.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698