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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.html
diff --git a/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.html b/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.html
new file mode 100644
index 0000000000000000000000000000000000000000..737d8451238646c5ca6a8a3b6d5b2d2f8dca76fd
--- /dev/null
+++ b/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.html
@@ -0,0 +1,43 @@
+<div id="oauth-enrollment" class="step right hidden">
+ <div id="oauth-enroll-container">
+ <div id="oauth-enroll-step-signin">
+ <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.
+ src="about:blank"
+ marginwidth="0"
+ marginheight="0"
+ frameborder="0"
+ scrolling="no"></iframe>
+ </div>
+ <div id="oauth-enroll-step-working" class="oauth-enroll-step-center" hidden>
+ <div class="oauth-enroll-step-content">
+ <span class="oauth-enroll-step-icon">
+ <span class="oauth-enroll-spinner"></span>
+ </span>
+ <span class="oauth-enroll-step-message"
+ i18n-content="oauthEnrollWorking">
+ </span>
+ </div>
+ </div>
+ <div id="oauth-enroll-step-error" class="oauth-enroll-step-center" hidden>
+ <div class="oauth-enroll-step-content">
+ <span class="oauth-enroll-step-icon">
+ <img src="chrome://theme/IDR_ENROLL_FAILURE">
+ </span>
+ <span class="oauth-enroll-step-message">
+ <div id="oauth-enroll-error-message"></div>
+ <a id='oauth-enroll-error-retry' i18n-content="oauthEnrollRetry"></a>
+ </span>
+ </div>
+ </div>
+ <div id="oauth-enroll-step-success" class="oauth-enroll-step-center" hidden>
+ <div class="oauth-enroll-step-content">
+ <span class="oauth-enroll-step-icon">
+ <img src="chrome://theme/IDR_ENROLL_SUCCESS">
+ </span>
+ <span class="oauth-enroll-step-message"
+ i18n-content="oauthEnrollSuccess">
+ </span>
+ </div>
+ </div>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698