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

Side by Side Diff: chrome/browser/resources/gaia_auth/offline.html

Issue 10443024: Added chrome switch that lets tests override URL path, moved GAIA auth extension from CrOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
csilv 2012/05/25 22:38:39 nit: add: <meta charset="utf-8">
zel 2012/05/25 23:33:53 Done.
4 <link rel="stylesheet" href="offline.css">
5 <script src="util.js"></script>
6 <script src="offline.js"></script>
7 </head>
8 <body>
9 <div class="wrapper">
10 <div class="main content">
11 <div class="signin-box">
12 <h2 id="sign-in-title"></h2>
13 <form id="offline-login-form">
14 <label>
15 <strong id="email-label" class="email-label"></strong>
16 <input type="text" name="email" value="">
17 </label>
18 <label>
19 <strong id="password-label" class="passwd-label"></strong>
20 <input type="password" name="password">
21 <span role="alert" class="errormsg" id="errormsg-alert"></span>
22 </label>
23 <input id="submit-button" type="submit"
24 class="g-button g-button-submit">
25 </form>
26 </div>
27 </div>
28 </div>
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698