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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.html

Issue 7562008: Add new version of enrollment screen supporting OAuth. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: New icons, address comments. Created 9 years, 4 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 <div id="oauth-enrollment" class="step right hidden">
2 <div id="oauth-enroll-container">
3 <div id="oauth-enroll-step-signin">
4 <iframe id="oauth-enroll-signin-frame"
James Hawkins 2011/08/08 19:00:10 Please fill up the 80 cols and wrap only when nece
Mattias Nissler (ping if slow) 2011/08/10 12:37:24 Done.
5 src="about:blank"
6 marginwidth="0"
7 marginheight="0"
8 frameborder="0"
9 scrolling="no"></iframe>
10 </div>
11 <div id="oauth-enroll-step-working" class="oauth-enroll-step-center" hidden>
12 <div class="oauth-enroll-step-content">
13 <span class="oauth-enroll-step-icon">
14 <span class="oauth-enroll-spinner"></span>
15 </span>
16 <span class="oauth-enroll-step-message"
17 i18n-content="oauthEnrollWorking">
18 </span>
19 </div>
20 </div>
21 <div id="oauth-enroll-step-error" class="oauth-enroll-step-center" hidden>
22 <div class="oauth-enroll-step-content">
23 <span class="oauth-enroll-step-icon">
24 <img src="chrome://theme/IDR_ENROLL_FAILURE">
25 </span>
26 <span class="oauth-enroll-step-message">
27 <div id="oauth-enroll-error-message"></div>
28 <a id='oauth-enroll-error-retry' i18n-content="oauthEnrollRetry"></a>
29 </span>
30 </div>
31 </div>
32 <div id="oauth-enroll-step-success" class="oauth-enroll-step-center" hidden>
33 <div class="oauth-enroll-step-content">
34 <span class="oauth-enroll-step-icon">
35 <img src="chrome://theme/IDR_ENROLL_SUCCESS">
36 </span>
37 <span class="oauth-enroll-step-message"
38 i18n-content="oauthEnrollSuccess">
39 </span>
40 </div>
41 </div>
42 </div>
43 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698