OLD | NEW |
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-cancel-button" class="oauth-enroll-button"></div> | 6 <div id="oauth-enroll-cancel-button" class="oauth-enroll-button"></div> |
7 <div id="oauth-enroll-back-button" class="oauth-enroll-button" hidden></div> | 7 <div id="oauth-enroll-back-button" class="oauth-enroll-button" hidden></div> |
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 <div id="oauth-enroll-auth-view-container"></div> | 10 <div id="oauth-enroll-auth-view-container"></div> |
(...skipping 25 matching lines...) Expand all Loading... |
36 <div id="oauth-enroll-step-success"> | 36 <div id="oauth-enroll-step-success"> |
37 <div class="oauth-enroll-step-content"> | 37 <div class="oauth-enroll-step-content"> |
38 <span class="oauth-enroll-step-icon"> | 38 <span class="oauth-enroll-step-icon"> |
39 <img src="chrome://theme/IDR_ENROLL_SUCCESS"> | 39 <img src="chrome://theme/IDR_ENROLL_SUCCESS"> |
40 </span> | 40 </span> |
41 <span class="oauth-enroll-step-message"> | 41 <span class="oauth-enroll-step-message"> |
42 <span i18n-content="oauthEnrollSuccess"></span> | 42 <span i18n-content="oauthEnrollSuccess"></span> |
43 </span> | 43 </span> |
44 </div> | 44 </div> |
45 </div> | 45 </div> |
| 46 <div id="oauth-enroll-step-attribute-prompt"> |
| 47 <div class="oauth-enroll-step-content"> |
| 48 <p> |
| 49 <div class="oauth-enroll-step-message" |
| 50 id="oauth-enroll-attribute-prompt-message"> |
| 51 </div> |
| 52 </p> |
| 53 <p> |
| 54 <div class="oauth-enroll-textbox"> |
| 55 <div class="oauth-enroll-attribute-label" |
| 56 i18n-content="oauthEnrollAssetIdLabel"></div> |
| 57 <input class="oauth-enroll-attribute-field" |
| 58 id="oauth-enroll-asset-id" maxlength="200"/> |
| 59 </div> |
| 60 </p> |
| 61 <p> |
| 62 <div class="oauth-enroll-textbox"> |
| 63 <div class="oauth-enroll-attribute-label" |
| 64 i18n-content="oauthEnrollLocationLabel"></div> |
| 65 <input class="oauth-enroll-attribute-field" |
| 66 id="oauth-enroll-location" maxlength="200"/> |
| 67 </div> |
| 68 </p> |
| 69 </div> |
| 70 </div> |
46 </div> | 71 </div> |
47 <div id="oauth-saml-notice-container"> | 72 <div id="oauth-saml-notice-container"> |
48 <span id="oauth-saml-notice-message"></span> | 73 <span id="oauth-saml-notice-message"></span> |
49 </div> | 74 </div> |
50 <div id="oauth-enrollment-controls" class="step-controls"></div> | 75 <div id="oauth-enrollment-controls" class="step-controls"></div> |
51 </div> | 76 </div> |
OLD | NEW |