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

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

Issue 2323593002: Messaging for successful attestation-based enrollment. (Closed)
Patch Set: 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-error" role="alert"> 11 <div id="oauth-enroll-step-error" role="alert">
12 <notification-card id="oauth-enroll-error-card" type="fail" 12 <notification-card id="oauth-enroll-error-card" type="fail"
13 i18n-values="button-label:oauthEnrollRetry"> 13 i18n-values="button-label:oauthEnrollRetry">
14 </notification-card> 14 </notification-card>
15 </div> 15 </div>
16 <div id="oauth-enroll-step-success" role="alert"> 16 <div id="oauth-enroll-step-success" role="alert">
17 <notification-card id="oauth-enroll-success-card" type="success" 17 <notification-card id="oauth-enroll-success-card" type="success"
18 i18n-values="button-label:oauthEnrollDone" 18 i18n-values="button-label:oauthEnrollDone"
19 i18n-content="oauthEnrollSuccess"> 19 i18n-content="oauthEnrollSuccess">
20 </notification-card> 20 </notification-card>
21 </div> 21 </div>
22 <div id="oauth-enroll-step-abe-success" role="alert">
23 <notification-card id="oauth-enroll-abe-success-card" type="success"
24 i18n-values="button-label:oauthEnrollDone"
25 i18n-content="oauthEnrollAbeSuccess">
26 </notification-card>
27 </div>
22 <div id="oauth-enroll-step-attribute-prompt"> 28 <div id="oauth-enroll-step-attribute-prompt">
23 <gaia-card id="oauth-enroll-attribute-prompt-card" class="fit"> 29 <gaia-card id="oauth-enroll-attribute-prompt-card" class="fit">
24 <div class="header flex vertical layout end-justified"> 30 <div class="header flex vertical layout end-justified">
25 <h1 class="welcome-message" style="text-transform:capitalize" 31 <h1 class="welcome-message" style="text-transform:capitalize"
26 i18n-content="oauthEnrollScreenTitle"></h1> 32 i18n-content="oauthEnrollScreenTitle"></h1>
27 <p class="enterprise-info" 33 <p class="enterprise-info"
28 i18n-content="oauthEnrollDeviceInformation"></p> 34 i18n-content="oauthEnrollDeviceInformation"></p>
29 </div> 35 </div>
30 <div class="footer flex vertical layout justified"> 36 <div class="footer flex vertical layout justified">
31 <div class="oauth-enroll-step-message"> 37 <div class="oauth-enroll-step-message">
(...skipping 22 matching lines...) Expand all
54 <notification-card id="oauth-enroll-attribute-prompt-error-card" 60 <notification-card id="oauth-enroll-attribute-prompt-error-card"
55 type="fail" i18n-values="button-label:oauthEnrollDone"> 61 type="fail" i18n-values="button-label:oauthEnrollDone">
56 </notification-card> 62 </notification-card>
57 </div> 63 </div>
58 </div> 64 </div>
59 <div id="oauth-saml-notice-container"> 65 <div id="oauth-saml-notice-container">
60 <span id="oauth-saml-notice-message"></span> 66 <span id="oauth-saml-notice-message"></span>
61 </div> 67 </div>
62 <navigation-bar id="oauth-enroll-navigation"></navigation-bar> 68 <navigation-bar id="oauth-enroll-navigation"></navigation-bar>
63 </div> 69 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698