OLD | NEW |
| (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> | |
OLD | NEW |