OLD | NEW |
(Empty) | |
| 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection;lang:language"> |
| 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="chrome://resources/css/text_defaults_md.css"> |
| 8 <link rel="stylesheet" href="sync_confirmation.css"></link> |
| 9 </head> |
| 10 <body> |
| 11 <div class="container"> |
| 12 <div class="top-title-bar" i18n-content="syncConfirmationTitle"></div> |
| 13 <div class="details"> |
| 14 <div class="picture-container"> |
| 15 <div class="picture"> |
| 16 <img id="profile-picture"></img> |
| 17 <div class="checkmark-bubble"></div> |
| 18 </div> |
| 19 </div> |
| 20 <div class="sync-message" |
| 21 i18n-values=".innerHTML:syncConfirmationBody"></div> |
| 22 <div class="action-container"> |
| 23 <paper-button id="confirmButton" |
| 24 i18n-content="syncConfirmationConfirmLabel"></paper-button> |
| 25 <paper-button id="undoButton" |
| 26 i18n-content="syncConfirmationUndoLabel"></paper-button> |
| 27 </div> |
| 28 </div> |
| 29 </div> |
| 30 </body> |
| 31 <script src="chrome://resources/js/cr.js"></script> |
| 32 <script src="chrome://resources/js/load_time_data.js"></script> |
| 33 <script src="chrome://resources/js/util.js"></script> |
| 34 <script src="sync_confirmation.js"></script> |
| 35 <script src="chrome://sync-confirmation/strings.js"></script> |
| 36 <script src="chrome://resources/js/i18n_template.js"></script> |
| 37 </html> |
OLD | NEW |