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..327bae18b660c97fd3c4d46748c34914acb75a65 |
--- /dev/null |
+++ b/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.html |
@@ -0,0 +1,45 @@ |
+<div class="step right hidden" id="oauth-enrollment"> |
James Hawkins
2011/08/05 17:01:01
id should be specified first.
Mattias Nissler (ping if slow)
2011/08/08 16:38:47
Done.
|
+ <div id="oauth-enroll-container"> |
+ <div id="oauth-enroll-step-signin"> |
+ <iframe id="oauth-enroll-signin-frame" |
+ src="about:blank" |
James Hawkins
2011/08/05 17:01:01
Indentation is 4 spaces from the start of the tag.
Mattias Nissler (ping if slow)
2011/08/08 16:38:47
Done.
|
+ 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' |
+ onclick="chrome.send('oauthEnrollRetry', []);" |
whywhat
2011/08/05 07:24:58
nit: indent got off by one space here and on the n
Mattias Nissler (ping if slow)
2011/08/05 07:33:16
Actually, it's indented 4 spaces after a line brea
whywhat
2011/08/05 07:38:53
Ah, ok. I thought you wanted to align attributes l
Mattias Nissler (ping if slow)
2011/08/05 07:40:59
You are right, that's inconsistent. I'll fix the i
James Hawkins
2011/08/05 17:01:01
Move the JS to a .js file.
Mattias Nissler (ping if slow)
2011/08/08 16:38:47
Done.
|
+ 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> |