OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> | 4 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu
tton.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu
tton.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-
progress.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-
progress.html"> |
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas
ses/iron-flex-layout.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas
ses/iron-flex-layout.html"> |
8 <style is="custom-style"> | 8 <style is="custom-style"> |
9 paper-progress { | 9 paper-progress { |
10 display: block; | 10 display: block; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 </head> | 43 </head> |
44 <body> | 44 <body> |
45 <div id="start" class="section section-flex"> | 45 <div id="start" class="section section-flex"> |
46 <img class="image-header" src="images/header.png"> | 46 <img class="image-header" src="images/header.png"> |
47 <p class="text-title" i18n-content="greetingHeader"></p> | 47 <p class="text-title" i18n-content="greetingHeader"></p> |
48 <p class="text-desc" i18n-content="greetingDescription"></p> | 48 <p class="text-desc" i18n-content="greetingDescription"></p> |
49 <p class="text-terms-title" i18n-content="termsOfService"></p> | 49 <p class="text-terms-title" i18n-content="termsOfService"></p> |
50 <div class="section-terms" id ="terms-container"> | 50 <div class="section-terms" id ="terms-container"> |
51 <webview id="terms" partition="persist:arc_support"></webview> | 51 <webview id="terms" partition="persist:arc_support"></webview> |
52 </div> | 52 </div> |
53 <div class="layout horizontal section-metrics"> | 53 <div class="layout horizontal section-checkbox-container"> |
54 <input type="checkbox" class="checkbox-metrics" id="enable-metrics" | 54 <input type="checkbox" class="checkbox-option" id="enable-metrics" hidden> |
55 hidden> | 55 <p class="checkbox-text" id="text-metrics"></p> |
56 <p class="text-metrics" id="text-metrics"></p> | 56 </div> |
| 57 <div id="section-backup-restore" class="layout horizontal |
| 58 section-checkbox-container"> |
| 59 <input type="checkbox" class="checkbox-option" id="enable-backup-restore"> |
| 60 <p class="checkbox-text" id="text-backup-restore"></p> |
57 </div> | 61 </div> |
58 <div class="layout horizontal end-justified section-buttons"> | 62 <div class="layout horizontal end-justified section-buttons"> |
59 <paper-button class="white" id="button-cancel" | 63 <paper-button class="white" id="button-cancel" |
60 i18n-content="buttonCancel"> | 64 i18n-content="buttonCancel"> |
61 </paper-button> | 65 </paper-button> |
62 <div class="button-separator"></div> | 66 <div class="button-separator"></div> |
63 <paper-button class="blue" id="button-agree" i18n-content="buttonAgree" | 67 <paper-button class="blue" id="button-agree" i18n-content="buttonAgree" |
64 disabled> | 68 disabled> |
65 </paper-button> | 69 </paper-button> |
66 </div> | 70 </div> |
(...skipping 17 matching lines...) Expand all Loading... |
84 <paper-progress class="red" value="100" max="100" ></paper-progress> | 88 <paper-progress class="red" value="100" max="100" ></paper-progress> |
85 <p class="text-status" id="error-message"></p> | 89 <p class="text-status" id="error-message"></p> |
86 <paper-button class="blue" id="button-send-feedback" | 90 <paper-button class="blue" id="button-send-feedback" |
87 i18n-content="buttonSendFeedback"> | 91 i18n-content="buttonSendFeedback"> |
88 </paper-button> | 92 </paper-button> |
89 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry"> | 93 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry"> |
90 </paper-button> | 94 </paper-button> |
91 </div> | 95 </div> |
92 </body> | 96 </body> |
93 </html> | 97 </html> |
OLD | NEW |