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

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

Issue 2343183003: Show a spinner UI for zero-touch enrollment (Closed)
Patch Set: Show a spinner UI for zero-touch enrollment Created 4 years, 3 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
OLDNEW
1 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 1 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 4
5 <div id="oauth-enrollment" class="step no-logo hidden" hidden> 5 <div id="oauth-enrollment" class="step no-logo hidden" hidden>
6 <div id="oauth-enroll-step-contents"> 6 <div id="oauth-enroll-step-contents">
7 <div id="oauth-enroll-step-signin"> 7 <div id="oauth-enroll-step-signin">
8 <webview id="oauth-enroll-auth-view" name="oauth-enroll-auth-view"> 8 <webview id="oauth-enroll-auth-view" name="oauth-enroll-auth-view">
9 </webview> 9 </webview>
10 </div> 10 </div>
11 <div id="oauth-enroll-step-working">
12 <throbber-notice class="fit" i18n-values="text:oauthEnrollWorking">
13 </throbber-notice>
14 </div>
11 <div id="oauth-enroll-step-error" role="alert"> 15 <div id="oauth-enroll-step-error" role="alert">
12 <notification-card id="oauth-enroll-error-card" type="fail" 16 <notification-card id="oauth-enroll-error-card" type="fail"
13 i18n-values="button-label:oauthEnrollRetry"> 17 i18n-values="button-label:oauthEnrollRetry">
14 </notification-card> 18 </notification-card>
15 </div> 19 </div>
16 <div id="oauth-enroll-step-success" role="alert"> 20 <div id="oauth-enroll-step-success" role="alert">
17 <notification-card id="oauth-enroll-success-card" type="success" 21 <notification-card id="oauth-enroll-success-card" type="success"
18 i18n-values="button-label:oauthEnrollDone" 22 i18n-values="button-label:oauthEnrollDone"
19 i18n-content="oauthEnrollSuccess"> 23 i18n-content="oauthEnrollSuccess">
20 </notification-card> 24 </notification-card>
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 <notification-card id="oauth-enroll-attribute-prompt-error-card" 63 <notification-card id="oauth-enroll-attribute-prompt-error-card"
60 type="fail" i18n-values="button-label:oauthEnrollDone"> 64 type="fail" i18n-values="button-label:oauthEnrollDone">
61 </notification-card> 65 </notification-card>
62 </div> 66 </div>
63 </div> 67 </div>
64 <div id="oauth-saml-notice-container"> 68 <div id="oauth-saml-notice-container">
65 <span id="oauth-saml-notice-message"></span> 69 <span id="oauth-saml-notice-message"></span>
66 </div> 70 </div>
67 <navigation-bar id="oauth-enroll-navigation"></navigation-bar> 71 <navigation-bar id="oauth-enroll-navigation"></navigation-bar>
68 </div> 72 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698