| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 UI for the SAML interstitial page. | 4 UI for the SAML interstitial page. |
| 5 Example: | 5 Example: |
| 6 <saml-interstitial></saml-interstitial> | 6 <saml-interstitial></saml-interstitial> |
| 7 | 7 |
| 8 Attributes: | 8 Attributes: |
| 9 'domain' - The enterprise domain the device is enrolled to. | 9 'domain' - The enterprise domain the device is enrolled to. |
| 10 'showDomainMessages' - If true, the messages showing the enrollment domain | 10 'showDomainMessages' - If true, the messages showing the enrollment domain |
| 11 will be shown. Its value is set automatically when | 11 will be shown. Its value is set automatically when |
| 12 'domain' is set, and is true as long as 'domain' is | 12 'domain' is set, and is true as long as 'domain' is |
| 13 not empty. | 13 not empty. |
| 14 'changeAccountLink' - A reference to the change account link so that it can be | 14 'changeAccountLink' - A reference to the change account link so that it can be |
| 15 used in testing. | 15 used in testing. |
| 16 | 16 |
| 17 Functions: | 17 Functions: |
| 18 'submit' - Submits the saml interstitial form for tests. Equivalent to the | 18 'submit' - Submits the saml interstitial form for tests. Equivalent to the |
| 19 user clicking next. | 19 user clicking next. |
| 20 | 20 |
| 21 Events: | 21 Events: |
| 22 'samlPageNextClicked' - Fired when the "Next" button is clicked indicating | 22 'samlPageNextClicked' - Fired when the "Next" button is clicked indicating |
| 23 that the user would like to proceed with | 23 that the user would like to proceed with |
| 24 authentication via his enrollement SAML IdP. | 24 authentication via their enrollement SAML IdP. |
| 25 'samlPageChangeAccountClicked' - Fired when the user clicks the sign in with | 25 'samlPageChangeAccountClicked' - Fired when the user clicks the sign in with |
| 26 a differnt account link. GAIA Minute Maid | 26 a differnt account link. GAIA Minute Maid |
| 27 screen will be shown. | 27 screen will be shown. |
| 28 --> | 28 --> |
| 29 <dom-module name="saml-interstitial"> | 29 <dom-module name="saml-interstitial"> |
| 30 | 30 |
| 31 <template> | 31 <template> |
| 32 <style> | 32 <style> |
| 33 :host { | 33 :host { |
| 34 display: block; | 34 display: block; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 60 </gaia-input-form> | 60 </gaia-input-form> |
| 61 | 61 |
| 62 <img id="logo-img" src="chrome://theme/IDR_LOGO_GOOGLE_COLOR_90" | 62 <img id="logo-img" src="chrome://theme/IDR_LOGO_GOOGLE_COLOR_90" |
| 63 class="self-center" alt=""> | 63 class="self-center" alt=""> |
| 64 </div> | 64 </div> |
| 65 </gaia-card> | 65 </gaia-card> |
| 66 | 66 |
| 67 </template> | 67 </template> |
| 68 | 68 |
| 69 </dom-module> | 69 </dom-module> |
| OLD | NEW |