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

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: Remove unused flex import Created 3 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 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 <link rel="stylesheet" href="oobe_flex_layout.css"> 9 <link rel="stylesheet" href="oobe_flex_layout.css">
10 <div id="oauth-enroll-step-signin"> 10 <div id="oauth-enroll-step-signin">
11 <webview id="oauth-enroll-auth-view" name="oauth-enroll-auth-view"> 11 <webview id="oauth-enroll-auth-view" name="oauth-enroll-auth-view">
12 </webview> 12 </webview>
13 </div> 13 </div>
14 <div id="oauth-enroll-step-working"> 14 <div id="oauth-enroll-step-working">
15 <throbber-notice class="fit" i18n-values="text:oauthEnrollWorking"> 15 <throbber-notice class="fit" i18n-values="text:oauthEnrollWorking">
16 </throbber-notice> 16 </throbber-notice>
17 </div> 17 </div>
18 <div id="oauth-enroll-step-license">
19 <enrollment-license-card id="oauth-enroll-license-ui"
20 i18n-values="button-text:oauthEnrollNextBtn">
21 </enrollment-license-card>
22 </div>
18 <div id="oauth-enroll-step-ad-join"> 23 <div id="oauth-enroll-step-ad-join">
19 <offline-ad-login id="oauth-enroll-ad-join-ui" show-machine-input 24 <offline-ad-login id="oauth-enroll-ad-join-ui" show-machine-input
20 class="fit" i18n-values= 25 class="fit" i18n-values=
21 "ad-welcome-message:oauthEnrollAdDomainJoinWelcomeMessage; 26 "ad-welcome-message:oauthEnrollAdDomainJoinWelcomeMessage;
22 user-name-label:adEnrollmentLoginUsername"> 27 user-name-label:adEnrollmentLoginUsername">
23 </offline-ad-login> 28 </offline-ad-login>
24 </div> 29 </div>
25 <div id="oauth-enroll-step-error" role="alert"> 30 <div id="oauth-enroll-step-error" role="alert">
26 <notification-card id="oauth-enroll-error-card" type="fail" 31 <notification-card id="oauth-enroll-error-card" type="fail"
27 i18n-values="button-label:oauthEnrollRetry"> 32 i18n-values="button-label:oauthEnrollRetry">
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 <notification-card id="oauth-enroll-active-directory-join-error-card" 83 <notification-card id="oauth-enroll-active-directory-join-error-card"
79 type="fail" i18n-values="button-label:oauthEnrollRetry"> 84 type="fail" i18n-values="button-label:oauthEnrollRetry">
80 </notification-card> 85 </notification-card>
81 </div> 86 </div>
82 </div> 87 </div>
83 <div id="oauth-saml-notice-container"> 88 <div id="oauth-saml-notice-container">
84 <span id="oauth-saml-notice-message"></span> 89 <span id="oauth-saml-notice-message"></span>
85 </div> 90 </div>
86 <navigation-bar id="oauth-enroll-navigation"></navigation-bar> 91 <navigation-bar id="oauth-enroll-navigation"></navigation-bar>
87 </div> 92 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698