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

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

Issue 2433363004: Chromad: added AD Join ui, authpolicy_client (Closed)
Patch Set: More polishing Created 4 years, 1 month 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 <link rel="import" href="chrome://oobe/custom_elements.html">
6
5 <div id="oauth-enrollment" class="step no-logo hidden" hidden> 7 <div id="oauth-enrollment" class="step no-logo hidden" hidden>
6 <div id="oauth-enroll-step-contents"> 8 <div id="oauth-enroll-step-contents">
7 <div id="oauth-enroll-step-signin"> 9 <div id="oauth-enroll-step-signin">
8 <webview id="oauth-enroll-auth-view" name="oauth-enroll-auth-view"> 10 <webview id="oauth-enroll-auth-view" name="oauth-enroll-auth-view">
9 </webview> 11 </webview>
10 </div> 12 </div>
11 <div id="oauth-enroll-step-working"> 13 <div id="oauth-enroll-step-working">
12 <throbber-notice class="fit" i18n-values="text:oauthEnrollWorking"> 14 <throbber-notice class="fit" i18n-values="text:oauthEnrollWorking">
13 </throbber-notice> 15 </throbber-notice>
14 </div> 16 </div>
17 <div id="oauth-enroll-step-ad-join">
18 <offline-ad-login id="oauth-enroll-ad-join-ui" show-machine-input
19 class="fit" i18n-values=
20 "ad-welcome-message:oauthEnrollADDomainJoinWelcomeMessage">
Dan Beam 2016/10/28 21:13:03 4\s indent for continuations in HTML
Roman Sorokin (ftl) 2016/10/31 11:37:10 Done.
21 </offline-ad-login>
22 </div>
15 <div id="oauth-enroll-step-error" role="alert"> 23 <div id="oauth-enroll-step-error" role="alert">
16 <notification-card id="oauth-enroll-error-card" type="fail" 24 <notification-card id="oauth-enroll-error-card" type="fail"
17 i18n-values="button-label:oauthEnrollRetry"> 25 i18n-values="button-label:oauthEnrollRetry">
18 </notification-card> 26 </notification-card>
19 </div> 27 </div>
20 <div id="oauth-enroll-step-success" role="alert"> 28 <div id="oauth-enroll-step-success" role="alert">
21 <notification-card id="oauth-enroll-success-card" type="success" 29 <notification-card id="oauth-enroll-success-card" type="success"
22 i18n-values="button-label:oauthEnrollDone" 30 i18n-values="button-label:oauthEnrollDone"
23 i18n-content="oauthEnrollSuccess"> 31 i18n-content="oauthEnrollSuccess">
24 </notification-card> 32 </notification-card>
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 <notification-card id="oauth-enroll-attribute-prompt-error-card" 71 <notification-card id="oauth-enroll-attribute-prompt-error-card"
64 type="fail" i18n-values="button-label:oauthEnrollDone"> 72 type="fail" i18n-values="button-label:oauthEnrollDone">
65 </notification-card> 73 </notification-card>
66 </div> 74 </div>
67 </div> 75 </div>
68 <div id="oauth-saml-notice-container"> 76 <div id="oauth-saml-notice-container">
69 <span id="oauth-saml-notice-message"></span> 77 <span id="oauth-saml-notice-message"></span>
70 </div> 78 </div>
71 <navigation-bar id="oauth-enroll-navigation"></navigation-bar> 79 <navigation-bar id="oauth-enroll-navigation"></navigation-bar>
72 </div> 80 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698