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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/client/extension/icon.png ('k') | remoting/client/extension/machine.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/extension/login.html
diff --git a/remoting/client/extension/login.html b/remoting/client/extension/login.html
new file mode 100644
index 0000000000000000000000000000000000000000..23998acbf93235dd032f9e6cebcf9b68fbf3186a
--- /dev/null
+++ b/remoting/client/extension/login.html
@@ -0,0 +1,41 @@
+<!--
+Copyright (c) 2010 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<html>
+ <head>
+ <script type="text/javascript" src="base.js"></script>
+ <script type="text/javascript" src="client.js"></script>
+ <link rel="stylesheet" type="text/css" href="main.css" />
+ <title>Sign in</title>
+ </head>
+ <body>
+
+ <form name="loginform" action="" method="GET">
+ <table>
+ <tr>
+ <td align="right">Email:</td>
+ <td align="left">
+ <input type="text" name="username" id="username" value="" />
+ </td>
+ </tr><tr>
+ <td align="right">Password:</td>
+ <td align="left">
+ <input type="password" name="password" id="password" value="" />
+ </td>
+ </tr><tr>
+ <td></td>
+ <td>
+ <input type="button" name="login_button" value="Log In"
+ onclick="login(this.form)" />
+ <td>
+ </table>
+ </form>
+
+ <div id="login_status">
+ </div>
+
+ </body>
+</html>
« 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