OLD | NEW |
(Empty) | |
| 1 <!doctype html> |
| 2 <html> |
| 3 <head> |
| 4 <meta charset="utf-8"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.htm
l"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-
button.html"> |
| 7 <link rel="stylesheet" href="sync-confirmation.css"></link> |
| 8 <script src="chrome://resources/js/cr.js"></script> |
| 9 <script src="chrome://resources/js/load_time_data.js"></script> |
| 10 <script src="chrome://resources/js/util.js"></script> |
| 11 <script src="sync-confirmation.js"></script> |
| 12 </head> |
| 13 <body> |
| 14 <div class="container"> |
| 15 <div class="top-title-bar" i18n-content="syncConfirmationTitle"></div> |
| 16 <div class="details"> |
| 17 <div class="picture-container"> |
| 18 <div class="picture"> |
| 19 <img id="profile-picture"></img> |
| 20 <div class="checkmark-bubble"></div> |
| 21 </div> |
| 22 </div> |
| 23 <div class="sync-message" i18n-values=".innerHTML:syncConfirmationBody">
</div> |
| 24 <div class="action-container"> |
| 25 <paper-button id="confirmButton" i18n-content="syncConfirmationConfirm
Label"></paper-button> |
| 26 <paper-button id="undoButton" i18n-content="syncConfirmationUndoLabel"
></paper-button> |
| 27 </div> |
| 28 </div> |
| 29 </div> |
| 30 </body> |
| 31 <script src="chrome://sync-confirmation/strings.js"></script> |
| 32 <script src="chrome://resources/js/i18n_template.js"></script> |
| 33 </html> |
OLD | NEW |