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 <span class="oauth-enroll-step-message"> |
| 49 <span id="oauth-enroll-attribute-prompt-message"></span> |
| 50 </span> |
| 51 <p> |
| 52 <div class="oauth-enroll-textbox"> |
| 53 <label> |
| 54 <span i18n-content="oauthEnrollAssetIdLabel" |
| 55 class="oauth-enroll-attribute-label"></span> |
| 56 <p> |
| 57 <input class="oauth-enroll-attribute-field" |
| 58 id="oauth-enroll-asset-id" maxlength="200"/> |
| 59 </p> |
| 60 </label> |
| 61 </div> |
| 62 </p> |
| 63 <p> |
| 64 <div class="oauth-enroll-textbox"> |
| 65 <label> |
| 66 <span i18n-content="oauthEnrollLocationLabel" |
| 67 class="oauth-enroll-attribute-label"></span> |
| 68 <p> |
| 69 <input class="oauth-enroll-attribute-field" |
| 70 id="oauth-enroll-location" maxlength="200"/> |
| 71 </p> |
| 72 </label> |
| 73 </div> |
| 74 </p> |
| 75 </div> |
| 76 </div> |
46 </div> | 77 </div> |
47 <div id="oauth-saml-notice-container"> | 78 <div id="oauth-saml-notice-container"> |
48 <span id="oauth-saml-notice-message"></span> | 79 <span id="oauth-saml-notice-message"></span> |
49 </div> | 80 </div> |
50 <div id="oauth-enrollment-controls" class="step-controls"></div> | 81 <div id="oauth-enrollment-controls" class="step-controls"></div> |
51 </div> | 82 </div> |
OLD | NEW |