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

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

Issue 2959853003: Add UI components for license type selection in ChromeOS login UI. (Closed)
Patch Set: Created 3 years, 5 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 <link rel="import" href="chrome://oobe/custom_elements.html"> 5 <link rel="import" href="chrome://oobe/custom_elements.html">
6 6
7 <div id="oauth-enrollment" class="step no-logo hidden" hidden> 7 <div id="oauth-enrollment" class="step no-logo hidden" hidden>
8 <div id="oauth-enroll-step-contents"> 8 <div id="oauth-enroll-step-contents">
9 <div id="oauth-enroll-step-signin"> 9 <div id="oauth-enroll-step-signin">
10 <webview id="oauth-enroll-auth-view" name="oauth-enroll-auth-view"> 10 <webview id="oauth-enroll-auth-view" name="oauth-enroll-auth-view">
11 </webview> 11 </webview>
12 </div> 12 </div>
13 <div id="oauth-enroll-step-working"> 13 <div id="oauth-enroll-step-working">
14 <throbber-notice class="fit" i18n-values="text:oauthEnrollWorking"> 14 <throbber-notice class="fit" i18n-values="text:oauthEnrollWorking">
15 </throbber-notice> 15 </throbber-notice>
16 </div> 16 </div>
17 <div id="oauth-enroll-step-license">
18 <enrollment-license-card id="oauth-enroll-license-ui"
19 i18n-values="button-text:oauthEnrollNextBtn">
20 </enrollment-license-card>
21 </div>
17 <div id="oauth-enroll-step-ad-join"> 22 <div id="oauth-enroll-step-ad-join">
18 <offline-ad-login id="oauth-enroll-ad-join-ui" show-machine-input 23 <offline-ad-login id="oauth-enroll-ad-join-ui" show-machine-input
19 class="fit" i18n-values= 24 class="fit" i18n-values=
20 "ad-welcome-message:oauthEnrollAdDomainJoinWelcomeMessage"> 25 "ad-welcome-message:oauthEnrollAdDomainJoinWelcomeMessage">
21 </offline-ad-login> 26 </offline-ad-login>
22 </div> 27 </div>
23 <div id="oauth-enroll-step-error" role="alert"> 28 <div id="oauth-enroll-step-error" role="alert">
24 <notification-card id="oauth-enroll-error-card" type="fail" 29 <notification-card id="oauth-enroll-error-card" type="fail"
25 i18n-values="button-label:oauthEnrollRetry"> 30 i18n-values="button-label:oauthEnrollRetry">
26 </notification-card> 31 </notification-card>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 <notification-card id="oauth-enroll-active-directory-join-error-card" 81 <notification-card id="oauth-enroll-active-directory-join-error-card"
77 type="fail" i18n-values="button-label:oauthEnrollRetry"> 82 type="fail" i18n-values="button-label:oauthEnrollRetry">
78 </notification-card> 83 </notification-card>
79 </div> 84 </div>
80 </div> 85 </div>
81 <div id="oauth-saml-notice-container"> 86 <div id="oauth-saml-notice-container">
82 <span id="oauth-saml-notice-message"></span> 87 <span id="oauth-saml-notice-message"></span>
83 </div> 88 </div>
84 <navigation-bar id="oauth-enroll-navigation"></navigation-bar> 89 <navigation-bar id="oauth-enroll-navigation"></navigation-bar>
85 </div> 90 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698